1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

added assembler targets to makefile and added Racket version of fdtool

This commit is contained in:
Wei-ju Wu
2014-11-06 13:29:42 -08:00
parent af2171a734
commit d5e961cfe7
2 changed files with 9 additions and 3 deletions

View File

@ -1,10 +1,10 @@
ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
ASM = vasmm68k_mot
all: test1 hello
all: test1 hello test2
clean:
rm -f test1 hello *.o
rm -f test1 test2 hello *.o
test1: test1.o
vlink -bamigahunk -o test1 -s test1.o
@ -12,6 +12,12 @@ test1: test1.o
test1.o: test1.asm
$(ASM) $(ASM_FLAGS) -o test1.o test1.asm
test2: test2.o
vlink -bamigahunk -o test2 -s test2.o
test2.o: test2.asm
$(ASM) $(ASM_FLAGS) -o test2.o test2.asm
hello: hello.o
vlink -bamigahunk -o hello -s hello.o