comparison 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
comparison
equal deleted inserted replaced
629:9089951a1994 630:47123183c336
14 CFLAGS+= -pg 14 CFLAGS+= -pg
15 LDFLAGS+= -pg 15 LDFLAGS+= -pg
16 endif 16 endif
17 ifdef NOGL 17 ifdef NOGL
18 CFLAGS+= -DDISABLE_OPENGL 18 CFLAGS+= -DDISABLE_OPENGL
19 endif
20
21 ifdef M68030
22 CFLAGS+= -DM68030
23 endif
24 ifdef M68020
25 CFLAGS+= -DM68020
26 endif
27 ifdef M68010
28 CFLAGS+= -DM68010
19 endif 29 endif
20 30
21 TRANSOBJS=gen_x86.o x86_backend.o mem.o 31 TRANSOBJS=gen_x86.o x86_backend.o mem.o
22 M68KOBJS=68kinst.o m68k_to_x86.o runtime.o 32 M68KOBJS=68kinst.o m68k_to_x86.o runtime.o
23 Z80OBJS=z80inst.o z80_to_x86.o zruntime.o 33 Z80OBJS=z80inst.o z80_to_x86.o zruntime.o