ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/Makefile.in
Revision: 1.26
Committed: 2004-12-21T23:27:11Z (19 years, 7 months ago) by gbeauche
Branch: MAIN
Changes since 1.25: +5 -0 lines
Log Message:
Append disassembler to dyngen, if available

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