ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/Makefile.in
(Generate patch)

Comparing SheepShaver/src/Unix/Makefile.in (file contents):
Revision 1.40 by gbeauche, 2006-05-08T17:19:45Z vs.
Revision 1.45 by asvitkine, 2009-02-19T07:02:46Z

# Line 119 | Line 119 | $(GUI_APP_EXE): $(OBJ_DIR) $(GUI_OBJS)
119          $(CXX) -o $@ $(LDFLAGS) $(GUI_OBJS) $(GUI_LIBS)
120  
121   $(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/$(APP).icns
122 +        rm -rf $(APP_APP)/Contents
123          mkdir -p $(APP_APP)/Contents
124 <        cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/
124 >        ./cpr.sh ../MacOSX/Info.plist $(APP_APP)/Contents/
125          echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo
126          mkdir -p $(APP_APP)/Contents/MacOS
127 <        cp -f $(APP) $(APP_APP)/Contents/MacOS/
128 <        strip $(APP_APP)/Contents/MacOS/$(APP)
127 >        ./cpr.sh $(APP) $(APP_APP)/Contents/MacOS/
128 >        strip -x $(APP_APP)/Contents/MacOS/$(APP)
129          mkdir -p $(APP_APP)/Contents/Resources
130 <        cp -f ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/
130 >        ./cpr.sh ../MacOSX/PrefsEditor/standalone_nib/English.lproj $(APP_APP)/Contents/Resources
131 >        ./cpr.sh ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/
132  
133   $(GUI_APP)_app: $(GUI_APP) ../MacOSX/Info.plist ../MacOSX/$(APP).icns
134 +        rm -rf $(GUI_APP_APP)/Contents
135          mkdir -p $(GUI_APP_APP)/Contents
136          sed -e "s/$(APP)/$(GUI_APP)/" < ../MacOSX/Info.plist > $(GUI_APP_APP)/Contents/Info.plist
137          echo -n 'APPL????' > $(GUI_APP_APP)/Contents/PkgInfo
138          mkdir -p $(GUI_APP_APP)/Contents/MacOS
139 <        cp -f $(GUI_APP) $(GUI_APP_APP)/Contents/MacOS/
140 <        strip $(GUI_APP_APP)/Contents/MacOS/$(GUI_APP)
139 >        ./cpr.sh $(GUI_APP) $(GUI_APP_APP)/Contents/MacOS/
140 >        strip -x $(GUI_APP_APP)/Contents/MacOS/$(GUI_APP)
141          mkdir -p $(GUI_APP_APP)/Contents/Resources
142 <        cp -f ../MacOSX/$(APP).icns $(GUI_APP_APP)/Contents/Resources/$(GUI_APP).icns
142 >        ./cpr.sh ../MacOSX/$(APP).icns $(GUI_APP_APP)/Contents/Resources/$(GUI_APP).icns
143  
144   modules:
145          cd Linux/NetDriver; make
# Line 220 | Line 223 | $(OBJ_DIR)/ppc-dyngen-ops.o: $(kpxsrcdir
223   ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o $(DYNGEN)
224          ./$(DYNGEN) -o $@ $<
225  
226 < $(OBJ_DIR)/sheepshaver_glue.o $(OBJ_DIR)/ppc-cpu.o $(OBJ_DIR)/ppc-decode.o $(OBJ_DIR)/ppc-translate.o: basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
226 > $(OBJ_DIR)/sheepshaver_glue.o $(OBJ_DIR)/ppc-cpu.o $(OBJ_DIR)/ppc-decode.o $(OBJ_DIR)/ppc-translate.o $(OBJ_DIR)/ppc-jit.o: basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
227   endif
228  
229   $(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp
# Line 228 | Line 231 | ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/p
231          $(CPP) $(CPPFLAGS) -DGENEXEC $< | $(PERL) $(GENEXECPL) > $@
232  
233   # PowerPC CPU tester
234 < TESTSRCS_ = mathlib/ieeefp.cpp mathlib/mathlib.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
234 > TESTSRCS_ = mathlib/ieeefp.cpp mathlib/mathlib.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 utils/utils-cpuinfo.cpp
235   ifeq ($(USE_DYNGEN),yes)
236 < TESTSRCS_ += cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp
236 > TESTSRCS_ += cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp cpu/ppc/ppc-jit.cpp
237   endif
238   TESTSRCS  = $(TESTSRCS_:%.cpp=$(kpxsrcdir)/%.cpp)
239  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines