summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-10-08 22:18:34 -0700
committerMichael Pavone <pavone@retrodev.com>2014-10-08 22:18:34 -0700
commitbee8289f02bc805f2a2e16d523d50374ee56b490 (patch)
treed6182b759064a8336305738b6f6951b3a9821296 /Makefile
parentde4b489931b6deb80fc1e09340c5c501d337aad0 (diff)
Improve support for disassembling 68010+ binaries
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d9e142e..c707397 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,16 @@ ifdef NOGL
CFLAGS+= -DDISABLE_OPENGL
endif
+ifdef M68030
+CFLAGS+= -DM68030
+endif
+ifdef M68020
+CFLAGS+= -DM68020
+endif
+ifdef M68010
+CFLAGS+= -DM68010
+endif
+
TRANSOBJS=gen_x86.o x86_backend.o mem.o
M68KOBJS=68kinst.o m68k_to_x86.o runtime.o
Z80OBJS=z80inst.o z80_to_x86.o zruntime.o