Skip to content

Commit

Permalink
Added Makefile and cleaned-up indent
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmelveilleux committed Jul 23, 2014
1 parent 2955bbb commit 984edd2
Show file tree
Hide file tree
Showing 2 changed files with 674 additions and 630 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CC=gcc
CFLAGS=-O

dcc6502: dcc6502.c
$(CC) -o $@ $^ $(CFLAGS)

clean:
rm -f *.o dcc6502 dcc6502.exe

all: dcc6502
Loading

0 comments on commit 984edd2

Please sign in to comment.