ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/Makefile.in
Revision: 1.37
Committed: 2005-12-11T18:15:34Z (18 years, 8 months ago) by gbeauche
Branch: MAIN
Changes since 1.36: +12 -4 lines
Log Message:
arrangements for non-gcc compilers

File Contents

# User Rev Content
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 gbeauche 1.35 CPPFLAGS = @CPPFLAGS@ -I../include -I. -I../slirp
21 cebix 1.1 DEFS = @DEFS@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\"
22     LDFLAGS = @LDFLAGS@
23     LIBS = @LIBS@
24     SYSSRCS = @SYSSRCS@
25 gbeauche 1.7 CPUSRCS = @CPUSRCS@
26 gbeauche 1.23 MONSRCS = @MONSRCS@
27 gbeauche 1.29 PERL = @PERL@
28 gbeauche 1.27 USE_DYNGEN = @USE_DYNGEN@
29 gbeauche 1.7 DYNGENSRCS = @DYNGENSRCS@
30 gbeauche 1.10 DYNGEN_CC = @DYNGEN_CC@
31 gbeauche 1.37 DYNGEN_CFLAGS = @DYNGEN_CFLAGS@
32     DYNGEN_CXXFLAGS = @DYNGEN_CXXFLAGS@
33 gbeauche 1.7 DYNGEN_OP_FLAGS = @DYNGEN_OP_FLAGS@
34 gbeauche 1.9 BLESS = @BLESS@
35 gbeauche 1.20 EXEEXT = @EXEEXT@
36 gbeauche 1.15 KEYCODES = @KEYCODES@
37 cebix 1.1 INSTALL = @INSTALL@
38     INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
39     INSTALL_DATA = @INSTALL_DATA@
40    
41 gbeauche 1.35 SLIRP_CFLAGS = @SLIRP_CFLAGS@
42     SLIRP_SRCS = @SLIRP_SRCS@
43     SLIRP_OBJS = $(SLIRP_SRCS:../slirp/%.c=obj/%.o)
44    
45 gbeauche 1.26 # Append disassembler to dyngen, if available
46 gbeauche 1.27 ifneq (:no,$(MONSRCS):$(USE_DYNGEN))
47 gbeauche 1.26 DYNGENSRCS += $(filter %i386-dis.c,$(MONSRCS))
48     endif
49    
50 cebix 1.1 ## Files
51 gbeauche 1.28 SRCS = ../main.cpp main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp sys_unix.cpp \
52 cebix 1.1 ../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 gbeauche 1.13 ../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \
55 gbeauche 1.16 ../gfxaccel.cpp ../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \
56 gbeauche 1.18 ../serial.cpp ../extfs.cpp \
57 gbeauche 1.2 about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \
58 gbeauche 1.3 vm_alloc.cpp sigsegv.cpp \
59 gbeauche 1.35 sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) $(MONSRCS) $(SLIRP_SRCS)
60 cebix 1.1 APP = SheepShaver
61 gbeauche 1.20 APP_EXE = $(APP)$(EXEEXT)
62 gbeauche 1.17 APP_APP = $(APP).app
63 cebix 1.1
64     ## Rules
65     .PHONY: modules install uninstall clean distclean depend dep
66     .SUFFIXES:
67     .SUFFIXES: .c .cpp .S .o .h
68    
69 gbeauche 1.20 all: $(APP_EXE)
70 cebix 1.1
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 gbeauche 1.7 define DYNGENSRCS_LIST_TO_OBJS
82 gbeauche 1.37 $(addprefix $(OBJ_DIR)/, $(addsuffix .dgo, $(foreach file, $(DYNGENSRCS), \
83 gbeauche 1.7 $(basename $(notdir $(file))))))
84     endef
85     DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS)
86    
87 cebix 1.1 SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file))))
88     VPATH :=
89     VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS))))
90    
91 gbeauche 1.20 $(APP_EXE): $(OBJ_DIR) $(OBJS)
92     $(CXX) -o $(APP_EXE) $(LDFLAGS) $(OBJS) $(LIBS)
93     $(BLESS) $(APP_EXE)
94 cebix 1.1
95 gbeauche 1.17 $(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 cebix 1.1 modules:
106 gbeauche 1.31 cd Linux/NetDriver; make
107 cebix 1.1
108 gbeauche 1.20 install: $(APP_EXE) installdirs
109     $(INSTALL_PROGRAM) $(APP_EXE) $(DESTDIR)$(bindir)/$(APP_EXE)
110 gbeauche 1.11 -$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1
111 gbeauche 1.14 $(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes
112 gbeauche 1.11 $(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig
113 gbeauche 1.12 chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig
114 cebix 1.1
115     installdirs:
116 gbeauche 1.11 $(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP)
117 cebix 1.1
118     uninstall:
119 gbeauche 1.20 rm -f $(DESTDIR)$(bindir)/$(APP_EXE)
120 gbeauche 1.11 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 cebix 1.1
125     clean:
126 gbeauche 1.20 rm -f $(APP_EXE) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp
127 gbeauche 1.34 rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp ppc_asm.out.s
128 gbeauche 1.17 rm -rf $(APP_APP)
129 cebix 1.1
130     distclean: clean
131     rm -rf $(OBJ_DIR)
132     rm -f Makefile
133     rm -f config.cache config.log config.status config.h
134 gbeauche 1.17 rm -f ../MacOSX/Info.plist
135 cebix 1.1
136     depend dep:
137     makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null
138    
139 gbeauche 1.35 $(OBJ_DIR)/%.o : ../slirp/%.c
140     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(SLIRP_CFLAGS) -c $< -o $@
141 cebix 1.1 $(OBJ_DIR)/%.o : %.c
142     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
143     $(OBJ_DIR)/%.o : %.cpp
144     $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
145 gbeauche 1.18 $(OBJ_DIR)/%.o : %.mm
146     $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
147 cebix 1.1 $(OBJ_DIR)/%.o : %.S
148 gbeauche 1.30 $(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.out.s
149     $(AS) $(ASFLAGS) -o $@ $*.out.s
150     rm $*.out.s
151 gbeauche 1.5
152     # Kheperix CPU emulator
153 gbeauche 1.19 kpxsrcdir = ../kpx_cpu/src
154 gbeauche 1.29 GENEXECPL = $(kpxsrcdir)/cpu/ppc/genexec.pl
155 gbeauche 1.20 DYNGEN = dyngen$(EXEEXT)
156 gbeauche 1.5
157 gbeauche 1.27 ifeq ($(USE_DYNGEN),yes)
158 gbeauche 1.20 DYNGENDEPS = basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
159    
160 gbeauche 1.37 # Only GCC is supported for generating synthetic opcodes
161 gbeauche 1.20 $(DYNGEN): $(DYNGENOBJS)
162 gbeauche 1.37 $(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 gbeauche 1.7
169     $(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp
170 gbeauche 1.19 $(OBJ_DIR)/basic-dyngen-ops.o: $(kpxsrcdir)/cpu/jit/basic-dyngen-ops.cpp
171 gbeauche 1.37 $(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(DYNGEN_CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@
172 gbeauche 1.20 basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o $(DYNGEN)
173     ./$(DYNGEN) -o $@ $<
174 gbeauche 1.7
175     $(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp
176 gbeauche 1.19 $(OBJ_DIR)/ppc-dyngen-ops.o: $(kpxsrcdir)/cpu/ppc/ppc-dyngen-ops.cpp basic-dyngen-ops.hpp
177 gbeauche 1.37 $(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(DYNGEN_CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@
178 gbeauche 1.20 ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o $(DYNGEN)
179     ./$(DYNGEN) -o $@ $<
180 cebix 1.1
181 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
182 gbeauche 1.20 endif
183 gbeauche 1.19
184 gbeauche 1.22 $(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp
185 gbeauche 1.29 ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/ppc/ppc-decode.cpp $(GENEXECPL) $(DYNGENDEPS)
186     $(CPP) $(CPPFLAGS) -DGENEXEC $< | $(PERL) $(GENEXECPL) > $@
187 gbeauche 1.22
188 gbeauche 1.23 # PowerPC CPU tester
189 gbeauche 1.36 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 gbeauche 1.27 ifeq ($(USE_DYNGEN),yes)
191 gbeauche 1.25 TESTSRCS_ += cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp
192 gbeauche 1.24 endif
193 gbeauche 1.23 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 cebix 1.1 #-------------------------------------------------------------------------
208     # DO NOT DELETE THIS LINE -- make depend depends on it.