diff options
| author | Duncan Smith | 2010-07-24 16:11:37 -0700 |
|---|---|---|
| committer | Duncan Smith | 2010-07-24 16:11:37 -0700 |
| commit | ff8d7b80d9de3dda9e86b5856b3b3b597723078b (patch) | |
| tree | 56d8ff5971087c7bf367ec8638cce19261e030e8 /Makefile | |
| parent | abcaa2deb4fcd24f762dfcaecc04b5558d24f81f (diff) | |
Created Makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1b23ee5 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +ASM_FILES=alu.asm flags.asm opcodes.asm ports.asm interrupts.asm main.asm +C_FILES=loader.c bankswap.c video.c + +CFLAGS=-Wall + +z680.89k: $(ASM_FILES) $(C_FILES) + tigcc $(CFLAGS) $(ASM_FILES) $(C_FILES) -o z680.89z |
