From 854a8a9abf29e5cab28871f7a81d0fd1e7474b3d Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 4 Dec 2012 19:13:12 -0800 Subject: M68K to x86 translation works for a limited subset of instructions and addressing modes --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 68fe8da..4275750 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3