diff Makefile @ 630:47123183c336

Improve support for disassembling 68010+ binaries
author Michael Pavone <pavone@retrodev.com>
date Wed, 08 Oct 2014 22:18:34 -0700
parents fb39534b6604
children de6f00204fa2
line wrap: on
line diff
--- a/Makefile	Thu Aug 14 09:38:32 2014 -0700
+++ b/Makefile	Wed Oct 08 22:18:34 2014 -0700
@@ -18,6 +18,16 @@
 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