From 3f1eb78c6ef1a967568fe9efab55b0d3e2534be4 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Mon, 21 Feb 2005 22:29:49 +0000 Subject: [PATCH] having both ppc_asm.S and ppc_asm.s in the same dir on MacOS X is a bad idea... --- SheepShaver/src/Unix/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SheepShaver/src/Unix/Makefile.in b/SheepShaver/src/Unix/Makefile.in index e546cccf..9a88419a 100644 --- a/SheepShaver/src/Unix/Makefile.in +++ b/SheepShaver/src/Unix/Makefile.in @@ -137,9 +137,9 @@ $(OBJ_DIR)/%.o : %.cpp $(OBJ_DIR)/%.o : %.mm $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ $(OBJ_DIR)/%.o : %.S - $(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.s - $(AS) $(ASFLAGS) -o $@ $*.s - rm $*.s + $(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.out.s + $(AS) $(ASFLAGS) -o $@ $*.out.s + rm $*.out.s # Kheperix CPU emulator kpxsrcdir = ../kpx_cpu/src