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. |
21 |
DEFS = @DEFS@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\" |
22 |
LDFLAGS = @LDFLAGS@ |
23 |
LIBS = @LIBS@ |
24 |
SYSSRCS = @SYSSRCS@ |
25 |
CPUSRCS = @CPUSRCS@ |
26 |
DYNGENSRCS = @DYNGENSRCS@ |
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@ |
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 |
../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 |
|
47 |
## Rules |
48 |
.PHONY: modules install uninstall clean distclean depend dep |
49 |
.SUFFIXES: |
50 |
.SUFFIXES: .c .cpp .S .o .h |
51 |
|
52 |
all: $(APP) |
53 |
|
54 |
OBJ_DIR = obj |
55 |
$(OBJ_DIR):: |
56 |
@[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1 |
57 |
|
58 |
define SRCS_LIST_TO_OBJS |
59 |
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \ |
60 |
$(basename $(notdir $(file)))))) |
61 |
endef |
62 |
OBJS = $(SRCS_LIST_TO_OBJS) |
63 |
|
64 |
define DYNGENSRCS_LIST_TO_OBJS |
65 |
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(DYNGENSRCS), \ |
66 |
$(basename $(notdir $(file)))))) |
67 |
endef |
68 |
DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS) |
69 |
|
70 |
SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file)))) |
71 |
VPATH := |
72 |
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS)))) |
73 |
|
74 |
$(APP): $(OBJ_DIR) $(OBJS) |
75 |
$(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS) |
76 |
$(BLESS) $(APP) |
77 |
|
78 |
modules: |
79 |
cd NetDriver; make |
80 |
|
81 |
install: $(APP) installdirs |
82 |
$(INSTALL_PROGRAM) $(APP) $(DESTDIR)$(bindir)/$(APP) |
83 |
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1 |
84 |
$(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes |
85 |
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig |
86 |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig |
87 |
|
88 |
installdirs: |
89 |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP) |
90 |
|
91 |
uninstall: |
92 |
rm -f $(DESTDIR)$(bindir)/$(APP) |
93 |
rm -f $(DESTDIR)$(man1dir)/$(APP).1 |
94 |
rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes |
95 |
rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig |
96 |
rmdir $(DESTDIR)$(datadir)/$(APP) |
97 |
|
98 |
clean: |
99 |
rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp |
100 |
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
101 |
|
102 |
distclean: clean |
103 |
rm -rf $(OBJ_DIR) |
104 |
rm -f Makefile |
105 |
rm -f config.cache config.log config.status config.h |
106 |
|
107 |
depend dep: |
108 |
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |
109 |
|
110 |
$(OBJ_DIR)/%.o : %.c |
111 |
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@ |
112 |
$(OBJ_DIR)/%.o : %.cpp |
113 |
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
114 |
$(OBJ_DIR)/%.o : %.S |
115 |
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.s |
116 |
$(AS) $(ASFLAGS) -o $@ $*.s |
117 |
rm $*.s |
118 |
|
119 |
# Kheperix CPU emulator |
120 |
GENEXEC = ../kpx_cpu/src/cpu/ppc/genexec.pl |
121 |
|
122 |
$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp |
123 |
ppc-execute-impl.cpp: ../kpx_cpu/src/cpu/ppc/ppc-decode.cpp $(GENEXEC) |
124 |
$(CPP) $(CPPFLAGS) -DGENEXEC $< | $(GENEXEC) > $@ |
125 |
|
126 |
dyngen: $(DYNGENOBJS) |
127 |
$(CXX) -o $@ $(LDFLAGS) $(DYNGENOBJS) |
128 |
|
129 |
$(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp |
130 |
$(OBJ_DIR)/basic-dyngen-ops.o: ../kpx_cpu/src/cpu/jit/basic-dyngen-ops.cpp |
131 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
132 |
basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o dyngen |
133 |
./dyngen -o $@ $< |
134 |
|
135 |
$(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp |
136 |
$(OBJ_DIR)/ppc-dyngen-ops.o: ../kpx_cpu/src/cpu/ppc/ppc-dyngen-ops.cpp |
137 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
138 |
ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o dyngen |
139 |
./dyngen -o $@ $< |
140 |
|
141 |
#------------------------------------------------------------------------- |
142 |
# DO NOT DELETE THIS LINE -- make depend depends on it. |