Skip to content

Commit

Permalink
Bring the makefile and .gitignore up to line
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiemeharry committed Oct 21, 2012
1 parent 4f1d150 commit 11fc707
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,3 +1,3 @@
*.bin
*.o
*~
combined.dasm
10 changes: 5 additions & 5 deletions Makefile
@@ -1,6 +1,6 @@
all: combined.dasm
dtasm -o forth-core.bin combined.dasm
combined.dasm: forth-macros.m4 forth-core.dasm
m4 forth-macros.m4 forth-core.dasm > combined.dasm
all: forth-core.o
dtld -l image -o forth-core.bin forth-core.o
forth-core.o: forth-core.dasm forth-macros.m4
m4 forth-core.dasm | dtasm -i -o forth-core.o -
clean:
rm -rf *.bin combined.dasm
rm -rf *.bin *.o

0 comments on commit 11fc707

Please sign in to comment.