1 |
cebix |
1.1 |
# Linux makefile for SheepShaver |
2 |
|
|
|
3 |
|
|
## System specific configuration |
4 |
|
|
@SET_MAKE@ |
5 |
|
|
SHELL = /bin/sh |
6 |
|
|
|
7 |
|
|
prefix = @prefix@ |
8 |
|
|
exec_prefix = @exec_prefix@ |
9 |
|
|
bindir = @bindir@ |
10 |
|
|
datadir = @datadir@ |
11 |
|
|
mandir = @mandir@ |
12 |
|
|
man1dir = $(mandir)/man1 |
13 |
|
|
|
14 |
gbeauche |
1.11 |
DESTDIR = |
15 |
|
|
|
16 |
cebix |
1.1 |
CC = @CC@ |
17 |
|
|
CXX = @CXX@ |
18 |
|
|
CFLAGS = @CFLAGS@ |
19 |
|
|
CXXFLAGS = @CXXFLAGS@ |
20 |
|
|
CPPFLAGS = @CPPFLAGS@ -I../include -I. |
21 |
|
|
DEFS = @DEFS@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\" |
22 |
|
|
LDFLAGS = @LDFLAGS@ |
23 |
|
|
LIBS = @LIBS@ |
24 |
|
|
SYSSRCS = @SYSSRCS@ |
25 |
gbeauche |
1.7 |
CPUSRCS = @CPUSRCS@ |
26 |
|
|
DYNGENSRCS = @DYNGENSRCS@ |
27 |
gbeauche |
1.10 |
DYNGEN_CC = @DYNGEN_CC@ |
28 |
gbeauche |
1.7 |
DYNGEN_OP_FLAGS = @DYNGEN_OP_FLAGS@ |
29 |
gbeauche |
1.9 |
BLESS = @BLESS@ |
30 |
gbeauche |
1.15 |
KEYCODES = @KEYCODES@ |
31 |
cebix |
1.1 |
INSTALL = @INSTALL@ |
32 |
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s |
33 |
|
|
INSTALL_DATA = @INSTALL_DATA@ |
34 |
|
|
|
35 |
|
|
## Files |
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 |
gbeauche |
1.13 |
../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \ |
40 |
gbeauche |
1.16 |
../gfxaccel.cpp ../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
41 |
gbeauche |
1.18 |
../serial.cpp ../extfs.cpp \ |
42 |
gbeauche |
1.2 |
about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \ |
43 |
gbeauche |
1.3 |
vm_alloc.cpp sigsegv.cpp \ |
44 |
gbeauche |
1.7 |
sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) |
45 |
cebix |
1.1 |
APP = SheepShaver |
46 |
gbeauche |
1.17 |
APP_APP = $(APP).app |
47 |
cebix |
1.1 |
|
48 |
|
|
## Rules |
49 |
|
|
.PHONY: modules install uninstall clean distclean depend dep |
50 |
|
|
.SUFFIXES: |
51 |
|
|
.SUFFIXES: .c .cpp .S .o .h |
52 |
|
|
|
53 |
|
|
all: $(APP) |
54 |
|
|
|
55 |
|
|
OBJ_DIR = obj |
56 |
|
|
$(OBJ_DIR):: |
57 |
|
|
@[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1 |
58 |
|
|
|
59 |
|
|
define SRCS_LIST_TO_OBJS |
60 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \ |
61 |
|
|
$(basename $(notdir $(file)))))) |
62 |
|
|
endef |
63 |
|
|
OBJS = $(SRCS_LIST_TO_OBJS) |
64 |
|
|
|
65 |
gbeauche |
1.7 |
define DYNGENSRCS_LIST_TO_OBJS |
66 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(DYNGENSRCS), \ |
67 |
|
|
$(basename $(notdir $(file)))))) |
68 |
|
|
endef |
69 |
|
|
DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS) |
70 |
|
|
|
71 |
cebix |
1.1 |
SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file)))) |
72 |
|
|
VPATH := |
73 |
|
|
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS)))) |
74 |
|
|
|
75 |
|
|
$(APP): $(OBJ_DIR) $(OBJS) |
76 |
|
|
$(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS) |
77 |
gbeauche |
1.9 |
$(BLESS) $(APP) |
78 |
cebix |
1.1 |
|
79 |
gbeauche |
1.17 |
$(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 |
cebix |
1.1 |
modules: |
90 |
|
|
cd NetDriver; make |
91 |
|
|
|
92 |
|
|
install: $(APP) installdirs |
93 |
gbeauche |
1.11 |
$(INSTALL_PROGRAM) $(APP) $(DESTDIR)$(bindir)/$(APP) |
94 |
|
|
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1 |
95 |
gbeauche |
1.14 |
$(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes |
96 |
gbeauche |
1.11 |
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig |
97 |
gbeauche |
1.12 |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig |
98 |
cebix |
1.1 |
|
99 |
|
|
installdirs: |
100 |
gbeauche |
1.11 |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP) |
101 |
cebix |
1.1 |
|
102 |
|
|
uninstall: |
103 |
gbeauche |
1.11 |
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 |
cebix |
1.1 |
|
109 |
|
|
clean: |
110 |
gbeauche |
1.5 |
rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp |
111 |
gbeauche |
1.7 |
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
112 |
gbeauche |
1.17 |
rm -rf $(APP_APP) |
113 |
cebix |
1.1 |
|
114 |
|
|
distclean: clean |
115 |
|
|
rm -rf $(OBJ_DIR) |
116 |
|
|
rm -f Makefile |
117 |
|
|
rm -f config.cache config.log config.status config.h |
118 |
gbeauche |
1.17 |
rm -f ../MacOSX/Info.plist |
119 |
cebix |
1.1 |
|
120 |
|
|
depend dep: |
121 |
|
|
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |
122 |
|
|
|
123 |
|
|
$(OBJ_DIR)/%.o : %.c |
124 |
|
|
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@ |
125 |
|
|
$(OBJ_DIR)/%.o : %.cpp |
126 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
127 |
gbeauche |
1.18 |
$(OBJ_DIR)/%.o : %.mm |
128 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
129 |
cebix |
1.1 |
$(OBJ_DIR)/%.o : %.S |
130 |
|
|
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.s |
131 |
|
|
$(AS) $(ASFLAGS) -o $@ $*.s |
132 |
|
|
rm $*.s |
133 |
gbeauche |
1.5 |
|
134 |
|
|
# Kheperix CPU emulator |
135 |
gbeauche |
1.19 |
kpxsrcdir = ../kpx_cpu/src |
136 |
|
|
GENEXEC = $(kpxsrcdir)/cpu/ppc/genexec.pl |
137 |
gbeauche |
1.5 |
|
138 |
gbeauche |
1.6 |
$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp |
139 |
gbeauche |
1.19 |
ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/ppc/ppc-decode.cpp $(GENEXEC) basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
140 |
gbeauche |
1.6 |
$(CPP) $(CPPFLAGS) -DGENEXEC $< | $(GENEXEC) > $@ |
141 |
gbeauche |
1.7 |
|
142 |
|
|
dyngen: $(DYNGENOBJS) |
143 |
|
|
$(CXX) -o $@ $(LDFLAGS) $(DYNGENOBJS) |
144 |
|
|
|
145 |
|
|
$(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp |
146 |
gbeauche |
1.19 |
$(OBJ_DIR)/basic-dyngen-ops.o: $(kpxsrcdir)/cpu/jit/basic-dyngen-ops.cpp |
147 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
148 |
gbeauche |
1.7 |
basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o dyngen |
149 |
|
|
./dyngen -o $@ $< |
150 |
|
|
|
151 |
|
|
$(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp |
152 |
gbeauche |
1.19 |
$(OBJ_DIR)/ppc-dyngen-ops.o: $(kpxsrcdir)/cpu/ppc/ppc-dyngen-ops.cpp basic-dyngen-ops.hpp |
153 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
154 |
gbeauche |
1.7 |
ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o dyngen |
155 |
|
|
./dyngen -o $@ $< |
156 |
cebix |
1.1 |
|
157 |
gbeauche |
1.19 |
$(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 |
158 |
|
|
|
159 |
cebix |
1.1 |
#------------------------------------------------------------------------- |
160 |
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it. |