37 |
|
../rom_patches.cpp ../rsrc_patches.cpp ../emul_op.cpp ../name_registry.cpp \ |
38 |
|
../macos_util.cpp ../timer.cpp timer_unix.cpp ../xpram.cpp xpram_unix.cpp \ |
39 |
|
../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \ |
40 |
< |
../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
40 |
> |
../gfxaccel.cpp ../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
41 |
|
../serial.cpp ../extfs.cpp extfs_unix.cpp \ |
42 |
|
about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \ |
43 |
|
vm_alloc.cpp sigsegv.cpp \ |
44 |
|
sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) |
45 |
|
APP = SheepShaver |
46 |
+ |
APP_APP = $(APP).app |
47 |
|
|
48 |
|
## Rules |
49 |
|
.PHONY: modules install uninstall clean distclean depend dep |
76 |
|
$(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS) |
77 |
|
$(BLESS) $(APP) |
78 |
|
|
79 |
+ |
$(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/SheepShaver.icns |
80 |
+ |
mkdir -p $(APP_APP)/Contents |
81 |
+ |
cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/ |
82 |
+ |
echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo |
83 |
+ |
mkdir -p $(APP_APP)/Contents/MacOS |
84 |
+ |
cp -f $(APP) $(APP_APP)/Contents/MacOS/ |
85 |
+ |
strip $(APP_APP)/Contents/MacOS/$(APP) |
86 |
+ |
mkdir -p $(APP_APP)/Contents/Resources |
87 |
+ |
cp -f ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/ |
88 |
+ |
|
89 |
|
modules: |
90 |
|
cd NetDriver; make |
91 |
|
|
109 |
|
clean: |
110 |
|
rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp |
111 |
|
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
112 |
+ |
rm -rf $(APP_APP) |
113 |
|
|
114 |
|
distclean: clean |
115 |
|
rm -rf $(OBJ_DIR) |
116 |
|
rm -f Makefile |
117 |
|
rm -f config.cache config.log config.status config.h |
118 |
+ |
rm -f ../MacOSX/Info.plist |
119 |
|
|
120 |
|
depend dep: |
121 |
|
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |