comparison Makefile @ 883:9f149f0e98b7

It is now possible to switch back and forth between the menu ROM and the game
author Michael Pavone <pavone@retrodev.com>
date Fri, 13 Nov 2015 19:15:37 -0800
parents 69a6ec208111
children e60eb88d7b09
comparison
equal deleted inserted replaced
882:75453bf2ffac 883:9f149f0e98b7
89 89
90 ifndef CPU 90 ifndef CPU
91 CPU:=$(shell uname -m) 91 CPU:=$(shell uname -m)
92 endif 92 endif
93 93
94 TRANSOBJS=gen.o backend.o $(MEM) 94 TRANSOBJS=gen.o backend.o $(MEM) arena.o
95 M68KOBJS=68kinst.o m68k_core.o 95 M68KOBJS=68kinst.o m68k_core.o
96 ifeq ($(CPU),x86_64) 96 ifeq ($(CPU),x86_64)
97 M68KOBJS+= m68k_core_x86.o 97 M68KOBJS+= m68k_core_x86.o
98 TRANSOBJS+= gen_x86.o backend_x86.o 98 TRANSOBJS+= gen_x86.o backend_x86.o
99 else 99 else