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 |
cebix |
1.1 |
INSTALL = @INSTALL@ |
31 |
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s |
32 |
|
|
INSTALL_DATA = @INSTALL_DATA@ |
33 |
|
|
|
34 |
|
|
## Files |
35 |
|
|
SRCS = main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp sys_unix.cpp \ |
36 |
|
|
../rom_patches.cpp ../rsrc_patches.cpp ../emul_op.cpp ../name_registry.cpp \ |
37 |
|
|
../macos_util.cpp ../timer.cpp timer_unix.cpp ../xpram.cpp xpram_unix.cpp \ |
38 |
|
|
../adb.cpp clip_unix.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \ |
39 |
gbeauche |
1.9 |
../video.cpp video_blit.cpp video_x.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \ |
40 |
|
|
../serial.cpp ../extfs.cpp extfs_unix.cpp \ |
41 |
gbeauche |
1.2 |
about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \ |
42 |
gbeauche |
1.3 |
vm_alloc.cpp sigsegv.cpp \ |
43 |
gbeauche |
1.7 |
sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) |
44 |
cebix |
1.1 |
APP = SheepShaver |
45 |
|
|
|
46 |
|
|
## Rules |
47 |
|
|
.PHONY: modules install uninstall clean distclean depend dep |
48 |
|
|
.SUFFIXES: |
49 |
|
|
.SUFFIXES: .c .cpp .S .o .h |
50 |
|
|
|
51 |
|
|
all: $(APP) |
52 |
|
|
|
53 |
|
|
OBJ_DIR = obj |
54 |
|
|
$(OBJ_DIR):: |
55 |
|
|
@[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1 |
56 |
|
|
|
57 |
|
|
define SRCS_LIST_TO_OBJS |
58 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \ |
59 |
|
|
$(basename $(notdir $(file)))))) |
60 |
|
|
endef |
61 |
|
|
OBJS = $(SRCS_LIST_TO_OBJS) |
62 |
|
|
|
63 |
gbeauche |
1.7 |
define DYNGENSRCS_LIST_TO_OBJS |
64 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(DYNGENSRCS), \ |
65 |
|
|
$(basename $(notdir $(file)))))) |
66 |
|
|
endef |
67 |
|
|
DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS) |
68 |
|
|
|
69 |
cebix |
1.1 |
SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file)))) |
70 |
|
|
VPATH := |
71 |
|
|
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS)))) |
72 |
|
|
|
73 |
|
|
$(APP): $(OBJ_DIR) $(OBJS) |
74 |
|
|
$(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS) |
75 |
gbeauche |
1.9 |
$(BLESS) $(APP) |
76 |
cebix |
1.1 |
|
77 |
|
|
modules: |
78 |
|
|
cd NetDriver; make |
79 |
|
|
|
80 |
|
|
install: $(APP) installdirs |
81 |
gbeauche |
1.11 |
$(INSTALL_PROGRAM) $(APP) $(DESTDIR)$(bindir)/$(APP) |
82 |
|
|
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1 |
83 |
|
|
$(INSTALL_DATA) keycodes $(DESTDIR)$(datadir)/$(APP)/keycodes |
84 |
|
|
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig |
85 |
gbeauche |
1.12 |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig |
86 |
cebix |
1.1 |
|
87 |
|
|
installdirs: |
88 |
gbeauche |
1.11 |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP) |
89 |
cebix |
1.1 |
|
90 |
|
|
uninstall: |
91 |
gbeauche |
1.11 |
rm -f $(DESTDIR)$(bindir)/$(APP) |
92 |
|
|
rm -f $(DESTDIR)$(man1dir)/$(APP).1 |
93 |
|
|
rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes |
94 |
|
|
rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig |
95 |
|
|
rmdir $(DESTDIR)$(datadir)/$(APP) |
96 |
cebix |
1.1 |
|
97 |
|
|
clean: |
98 |
gbeauche |
1.5 |
rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp |
99 |
gbeauche |
1.7 |
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp |
100 |
cebix |
1.1 |
|
101 |
|
|
distclean: clean |
102 |
|
|
rm -rf $(OBJ_DIR) |
103 |
|
|
rm -f Makefile |
104 |
|
|
rm -f config.cache config.log config.status config.h |
105 |
|
|
|
106 |
|
|
depend dep: |
107 |
|
|
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |
108 |
|
|
|
109 |
|
|
$(OBJ_DIR)/%.o : %.c |
110 |
|
|
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@ |
111 |
|
|
$(OBJ_DIR)/%.o : %.cpp |
112 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@ |
113 |
|
|
$(OBJ_DIR)/%.o : %.S |
114 |
|
|
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.s |
115 |
|
|
$(AS) $(ASFLAGS) -o $@ $*.s |
116 |
|
|
rm $*.s |
117 |
gbeauche |
1.5 |
|
118 |
|
|
# Kheperix CPU emulator |
119 |
|
|
GENEXEC = ../kpx_cpu/src/cpu/ppc/genexec.pl |
120 |
|
|
|
121 |
gbeauche |
1.6 |
$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp |
122 |
gbeauche |
1.5 |
ppc-execute-impl.cpp: ../kpx_cpu/src/cpu/ppc/ppc-decode.cpp $(GENEXEC) |
123 |
gbeauche |
1.6 |
$(CPP) $(CPPFLAGS) -DGENEXEC $< | $(GENEXEC) > $@ |
124 |
gbeauche |
1.7 |
|
125 |
|
|
dyngen: $(DYNGENOBJS) |
126 |
|
|
$(CXX) -o $@ $(LDFLAGS) $(DYNGENOBJS) |
127 |
|
|
|
128 |
|
|
$(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp |
129 |
|
|
$(OBJ_DIR)/basic-dyngen-ops.o: ../kpx_cpu/src/cpu/jit/basic-dyngen-ops.cpp |
130 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
131 |
gbeauche |
1.7 |
basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o dyngen |
132 |
|
|
./dyngen -o $@ $< |
133 |
|
|
|
134 |
|
|
$(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp |
135 |
|
|
$(OBJ_DIR)/ppc-dyngen-ops.o: ../kpx_cpu/src/cpu/ppc/ppc-dyngen-ops.cpp |
136 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@ |
137 |
gbeauche |
1.7 |
ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o dyngen |
138 |
|
|
./dyngen -o $@ $< |
139 |
cebix |
1.1 |
|
140 |
|
|
#------------------------------------------------------------------------- |
141 |
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it. |