From 066af7452aec259726029da19e72fb922d5e0e28 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sat, 1 Nov 2003 17:03:55 +0000 Subject: [PATCH] fix ppc-execute.o dependency --- SheepShaver/src/Unix/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SheepShaver/src/Unix/Makefile.in b/SheepShaver/src/Unix/Makefile.in index 7f72f0e7..7d82b3ac 100644 --- a/SheepShaver/src/Unix/Makefile.in +++ b/SheepShaver/src/Unix/Makefile.in @@ -98,9 +98,9 @@ $(OBJ_DIR)/%.o : %.S # Kheperix CPU emulator GENEXEC = ../kpx_cpu/src/cpu/ppc/genexec.pl -../kpx_cpu/src/cpu/ppc/ppc-execute.cpp: ppc-execute-impl.cpp +$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp ppc-execute-impl.cpp: ../kpx_cpu/src/cpu/ppc/ppc-decode.cpp $(GENEXEC) - $(CPP) $(CPPFLAGS) $< | $(GENEXEC) > $@ + $(CPP) $(CPPFLAGS) -DGENEXEC $< | $(GENEXEC) > $@ #------------------------------------------------------------------------- # DO NOT DELETE THIS LINE -- make depend depends on it.