diff options
| author | 2008-03-13 15:45:39 +0000 | |
|---|---|---|
| committer | 2008-03-13 15:45:39 +0000 | |
| commit | 4d5014585a56fcc13478892d065eacc60dd94dfd (patch) | |
| tree | 25a298b1da935bf1750666e274e59dfed1fc8b8f | |
| parent | de3cfee6c6f890d182c5b05543e0c0ae1ed08b40 (diff) | |
From: Fabio Priuli
Subject: small fix to cpu.mak
Attached please find a small patch to include M68000 CPU only when you're
compiling a build with the M68K. this is needed to e.g. compile tiny
builds .
| -rw-r--r-- | src/emu/cpu/cpu.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/cpu.mak b/src/emu/cpu/cpu.mak index 2054b45c8d5..8f72c897a52 100644 --- a/src/emu/cpu/cpu.mak +++ b/src/emu/cpu/cpu.mak @@ -1019,8 +1019,8 @@ ifneq ($(filter M68000 M68008 M68010 M68EC020 M68020 M68040,$(CPUS)),) OBJDIRS += $(CPUOBJ)/m68000 CPUOBJS += $(CPUOBJ)/m68000/m68kcpu.o $(CPUOBJ)/m68000/m68kmame.o $(CPUOBJ)/m68000/m68kops.o DBGOBJS += $(CPUOBJ)/m68000/m68kdasm.o -endif M68KMAKE = $(BUILDOUT)/m68kmake$(BUILD_EXE) +endif # when we compile source files we need to include generated files from the OBJ directory $(CPUOBJ)/m68000/%.o: $(CPUSRC)/m68000/%.c |
