diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1,7 +1,12 @@ +all : dis trans + dis : dis.o 68kinst.o $(CC) -o dis dis.o 68kinst.o +trans : trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o + $(CC) -o trans trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o + test_x86 : test_x86.o gen_x86.o $(CC) -o test_x86 test_x86.o gen_x86.o @@ -12,7 +17,10 @@ gen_fib : gen_fib.o gen_x86.o mem.o $(CC) -c -o $@ $< %.o : %.c - $(CC) -ggdb -c -o $@ $< + $(CC) -ggdb -std=gnu99 -c -o $@ $< + +%.bin : %.s68 + vasmm68k_mot -Fbin -m68000 -spaces -o $@ $< clean : - rm -rf dis test_x86 gen_fib *.o + rm -rf dis trans test_x86 gen_fib *.o |