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 |
DESTDIR = |
15 |
|
16 |
CC = @CC@ |
17 |
CXX = @CXX@ |
18 |
CFLAGS = @CFLAGS@ |
19 |
CXXFLAGS = @CXXFLAGS@ |
20 |
CPPFLAGS = @CPPFLAGS@ -I../include -I. -I../slirp |
21 |
DEFS = @DEFS@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\" |
22 |
LDFLAGS = @LDFLAGS@ |
23 |
LIBS = @LIBS@ |
24 |
SYSSRCS = @SYSSRCS@ |
25 |
CPUSRCS = @CPUSRCS@ |
26 |
MONSRCS = @MONSRCS@ |
27 |
PERL = @PERL@ |
28 |
USE_DYNGEN = @USE_DYNGEN@ |
29 |
DYNGENSRCS = @DYNGENSRCS@ |
30 |
DYNGEN_CC = @DYNGEN_CC@ |
31 |
DYNGEN_CFLAGS = @DYNGEN_CFLAGS@ |
32 |
DYNGEN_CXXFLAGS = @DYNGEN_CXXFLAGS@ |
33 |
DYNGEN_OP_FLAGS = @DYNGEN_OP_FLAGS@ |
34 |
BLESS = @BLESS@ |
35 |
EXEEXT = @EXEEXT@ |
36 |
KEYCODES = @KEYCODES@ |
37 |
INSTALL = @INSTALL@ |
38 |
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s |
39 |
INSTALL_DATA = @INSTALL_DATA@ |
40 |
|
41 |
SLIRP_CFLAGS = @SLIRP_CFLAGS@ |
42 |
SLIRP_SRCS = @SLIRP_SRCS@ |
43 |
SLIRP_OBJS = $(SLIRP_SRCS:../slirp/%.c=obj/%.o) |
44 |
|
45 |
# Append disassembler to dyngen, if available |
46 |
ifneq (:no,$(MONSRCS):$(USE_DYNGEN)) |
47 |
DYNGENSRCS += $(filter %i386-dis.c,$(MONSRCS)) |
48 |
endif |
49 |
|
50 |
## Files |
51 |
SRCS = ../main.cpp main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp sys_unix.cpp \ |
52 |
../rom_patches.cpp ../rsrc_patches.cpp ../emul_op.cpp ../name_registry.cpp \ |
53 |
../macos_util.cpp ../timer.cpp timer_unix.cpp ../xpram.cpp xpram_unix.cpp \ |
54 |
../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \ |
55 |
../gfxaccel.cpp ../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
56 |
../serial.cpp ../extfs.cpp \ |
57 |
about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \ |
58 |
vm_alloc.cpp sigsegv.cpp \ |
59 |
sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) $(MONSRCS) $(SLIRP_SRCS) |
60 |
APP = SheepShaver |
61 |
APP_EXE = $(APP)$(EXEEXT) |
62 |
APP_APP = $(APP).app |
63 |
|
64 |
## Rules |
65 |
.PHONY: modules install uninstall clean distclean depend dep |
66 |
.SUFFIXES: |
67 |
.SUFFIXES: .c .cpp .S .o .h |
68 |
|
69 |
all: $(APP_EXE) |
70 |
|
71 |
OBJ_DIR = obj |
72 |
$(OBJ_DIR):: |
73 |
@[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1 |
74 |
|
75 |
define SRCS_LIST_TO_OBJS |
76 |
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \ |
77 |
$(basename $(notdir $(file)))))) |
78 |
endef |
79 |
OBJS = $(SRCS_LIST_TO_OBJS) |
80 |
|
81 |
define DYNGENSRCS_LIST_TO_OBJS |
82 |
$(addprefix $(OBJ_DIR)/, $(addsuffix .dgo, $(foreach file, $(DYNGENSRCS), \ |
83 |
$(basename $(notdir $(file)))))) |
84 |
endef |
85 |
DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS) |
86 |
|
87 |
SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file)))) |
88 |
VPATH := |
89 |
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS)))) |
90 |
|
91 |
$(APP_EXE): $(OBJ_DIR) $(OBJS) |
92 |
$(CXX) -o $(APP_EXE) $(LDFLAGS) $(OBJS) $(LIBS) |
93 |
$(BLESS) $(APP_EXE) |
94 |
|
95 |
$(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/SheepShaver.icns |
96 |
mkdir -p $(APP_APP)/Contents |
97 |
cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/ |
98 |
echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo |
99 |
mkdir -p $(APP_APP)/Contents/MacOS |
100 |
cp -f $(APP) $(APP_APP)/Contents/MacOS/ |
101 |
strip $(APP_APP)/Contents/MacOS/$(APP) |
102 |
mkdir -p $(APP_APP)/Contents/Resources |
103 |
cp -f ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/ |
104 |
|
105 |
modules: |
106 |
cd Linux/NetDriver; make |
107 |
|
108 |
install: $(APP_EXE) installdirs |
109 |
$(INSTALL_PROGRAM) $(APP_EXE) $(DESTDIR)$(bindir)/$(APP_EXE) |
110 |
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1 |
111 |
$(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes |
112 |
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig |
113 |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig |
114 |
|
115 |
installdirs: |
116 |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP) |
117 |
|
118 |
uninstall: |
119 |
rm -f $(DESTDIR)$(bindir)/$(APP_EXE) |
120 |
rm -f $(DESTDIR)$(man1dir)/$(APP).1 |
121 |
rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes |
122 |
rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig |
123 |
rmdir $(DESTDIR)$(datadir)/$(APP) |
124 |
|
125 |
clean: |
126 |
rm -f $(APP_EXE) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp |
127 |
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp ppc_asm.out.s |
128 |
rm -rf $(APP_APP) |
129 |
|
130 |
distclean: clean |
131 |
rm -rf $(OBJ_DIR) |
132 |
rm -f Makefile |
133 |
rm -f config.cache config.log config.status config.h |
134 |
rm -f ../MacOSX/Info.plist |
135 |
|
136 |
depend dep: |
137 |
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |
138 |
|
139 |
$(OBJ_DIR)/%.o : ../slirp/%.c |
140 |
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(SLIRP_CFLAGS) -c $< -o $@ |
141 |
$(OBJ_DIR)/%.o : %.c |
142 |
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@ |
143 |
$(OBJ_DIR)/%.o : %.cpp |
144 |
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
145 |
$(OBJ_DIR)/%.o : %.mm |
146 |
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
147 |
$(OBJ_DIR)/%.o : %.S |
148 |
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.out.s |
149 |
$(AS) $(ASFLAGS) -o $@ $*.out.s |
150 |
rm $*.out.s |
151 |
|
152 |
# Kheperix CPU emulator |
153 |
kpxsrcdir = ../kpx_cpu/src |
154 |
GENEXECPL = $(kpxsrcdir)/cpu/ppc/genexec.pl |
155 |
DYNGEN = dyngen$(EXEEXT) |
156 |
|
157 |
ifeq ($(USE_DYNGEN),yes) |
158 |
DYNGENDEPS = basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
159 |
|
160 |
# Only GCC is supported for generating synthetic opcodes |
161 |
$(DYNGEN): $(DYNGENOBJS) |
162 |
$(DYNGEN_CC) -o $@ $(LDFLAGS) $(DYNGENOBJS) |
163 |
|
164 |
$(OBJ_DIR)/%.dgo : %.c |
165 |
$(DYNGEN_CC) -xc $(CPPFLAGS) $(DEFS) $(DYNGEN_CFLAGS) -c $< -o $@ |
166 |
$(OBJ_DIR)/%.dgo : %.cpp |
167 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(DYNGEN_CXXFLAGS) -c $< -o $@ |
168 |
|
169 |
$(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp |
170 |
$(OBJ_DIR)/basic-dyngen-ops.o: $(kpxsrcdir)/cpu/jit/basic-dyngen-ops.cpp |
171 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(DYNGEN_CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
172 |
basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o $(DYNGEN) |
173 |
./$(DYNGEN) -o $@ $< |
174 |
|
175 |
$(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp |
176 |
$(OBJ_DIR)/ppc-dyngen-ops.o: $(kpxsrcdir)/cpu/ppc/ppc-dyngen-ops.cpp basic-dyngen-ops.hpp |
177 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(DYNGEN_CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
178 |
ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o $(DYNGEN) |
179 |
./$(DYNGEN) -o $@ $< |
180 |
|
181 |
$(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 |
182 |
endif |
183 |
|
184 |
$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp |
185 |
ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/ppc/ppc-decode.cpp $(GENEXECPL) $(DYNGENDEPS) |
186 |
$(CPP) $(CPPFLAGS) -DGENEXEC $< | $(PERL) $(GENEXECPL) > $@ |
187 |
|
188 |
# PowerPC CPU tester |
189 |
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 |
190 |
ifeq ($(USE_DYNGEN),yes) |
191 |
TESTSRCS_ += cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp |
192 |
endif |
193 |
TESTSRCS = $(TESTSRCS_:%.cpp=$(kpxsrcdir)/%.cpp) |
194 |
|
195 |
define TESTSRCS_LIST_TO_OBJS |
196 |
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(TESTSRCS), \ |
197 |
$(basename $(notdir $(file)))))) |
198 |
endef |
199 |
TESTOBJS = $(TESTSRCS_LIST_TO_OBJS) |
200 |
|
201 |
$(OBJ_DIR)/test-powerpc.o: $(kpxsrcdir)/test/test-powerpc.cpp |
202 |
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -DEMU_KHEPERIX -c $< -o $@ |
203 |
|
204 |
test-powerpc$(EXEEXT): $(TESTOBJS) |
205 |
$(CXX) -o $@ $(LDFLAGS) $(TESTOBJS) $(LIBS) |
206 |
|
207 |
#------------------------------------------------------------------------- |
208 |
# DO NOT DELETE THIS LINE -- make depend depends on it. |