11 |
|
mandir = @mandir@ |
12 |
|
man1dir = $(mandir)/man1 |
13 |
|
|
14 |
+ |
DESTDIR = |
15 |
+ |
|
16 |
|
CC = @CC@ |
17 |
|
CXX = @CXX@ |
18 |
|
CFLAGS = @CFLAGS@ |
27 |
|
DYNGEN_CC = @DYNGEN_CC@ |
28 |
|
DYNGEN_OP_FLAGS = @DYNGEN_OP_FLAGS@ |
29 |
|
BLESS = @BLESS@ |
30 |
+ |
KEYCODES = @KEYCODES@ |
31 |
|
INSTALL = @INSTALL@ |
32 |
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s |
33 |
|
INSTALL_DATA = @INSTALL_DATA@ |
36 |
|
SRCS = main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp sys_unix.cpp \ |
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 clip_unix.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \ |
40 |
< |
../video.cpp video_blit.cpp video_x.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
39 |
> |
../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.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 |
|
|
92 |
|
install: $(APP) installdirs |
93 |
< |
$(INSTALL_PROGRAM) $(APP) $(bindir)/$(APP) |
94 |
< |
-$(INSTALL_DATA) $(APP).1 $(man1dir)/$(APP).1 |
93 |
> |
$(INSTALL_PROGRAM) $(APP) $(DESTDIR)$(bindir)/$(APP) |
94 |
> |
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1 |
95 |
> |
$(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes |
96 |
> |
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig |
97 |
> |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig |
98 |
|
|
99 |
|
installdirs: |
100 |
< |
$(SHELL) mkinstalldirs $(bindir) $(man1dir) |
100 |
> |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP) |
101 |
|
|
102 |
|
uninstall: |
103 |
< |
rm -f $(bindir)/$(APP) |
104 |
< |
rm -f $(man1dir)/$(APP).1 |
103 |
> |
rm -f $(DESTDIR)$(bindir)/$(APP) |
104 |
> |
rm -f $(DESTDIR)$(man1dir)/$(APP).1 |
105 |
> |
rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes |
106 |
> |
rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig |
107 |
> |
rmdir $(DESTDIR)$(datadir)/$(APP) |
108 |
|
|
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 |