From a83a597585356e736beb513e6ac9050d8e215826 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sat, 18 Dec 2004 22:36:16 +0000 Subject: [PATCH] enable build of the powerpc-tester without JIT --- SheepShaver/src/Unix/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/Makefile.in b/SheepShaver/src/Unix/Makefile.in index 3c31dcdb..4843470c 100644 --- a/SheepShaver/src/Unix/Makefile.in +++ b/SheepShaver/src/Unix/Makefile.in @@ -165,7 +165,10 @@ ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/ppc/ppc-decode.cpp $(GENEXEC) $(DYNGENDEP $(CPP) $(CPPFLAGS) -DGENEXEC $< | $(GENEXEC) > $@ # PowerPC CPU tester -TESTSRCS_ = cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp mathlib/ieeefp.cpp cpu/ppc/ppc-cpu.cpp cpu/ppc/ppc-decode.cpp cpu/ppc/ppc-execute.cpp cpu/ppc/ppc-translate.cpp test/test-powerpc.cpp $(MONSRCS) vm_alloc.cpp +TESTSRCS_ = mathlib/ieeefp.cpp cpu/ppc/ppc-cpu.cpp cpu/ppc/ppc-decode.cpp cpu/ppc/ppc-execute.cpp cpu/ppc/ppc-translate.cpp test/test-powerpc.cpp $(MONSRCS) vm_alloc.cpp +ifneq ($(DYNGENSRCS),) +TESTSRCS_ = cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp $(TESTSRCS_) +endif TESTSRCS = $(TESTSRCS_:%.cpp=$(kpxsrcdir)/%.cpp) define TESTSRCS_LIST_TO_OBJS