amiga-stuff/assembler/Makefile

20 lines
381 B
Makefile

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