ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/Makefile.in
Revision: 1.4
Committed: 2002-03-16T11:50:45Z (22 years, 3 months ago) by nigel
Branch: MAIN
CVS Tags: nigel-build-10
Changes since 1.3: +47 -35 lines
Log Message:
New script to generate symlinks, remove any symlink generation from Makefile,
Makefile now generates 8 wrappers for cpuemu.cpp to slightly improve compile
time, added the 8 wrappers to the Project Builder file, updated doco

File Contents

# Content
1 # MacOS X makefile for Basilisk II. Slightly based on the Unix one
2
3 ## System specific configuration
4 @SET_MAKE@
5 SHELL = /bin/sh
6
7
8 CC = @CC@
9 CXX = @CXX@
10 CFLAGS = @CFLAGS@
11 CXXFLAGS = @CXXFLAGS@
12 CPPFLAGS = @CPPFLAGS@ -I../include -I. -I../uae_cpu
13 DEFS = @DEFS@ @DEFINES@ -D_REENTRANT
14 LDFLAGS = @LDFLAGS@
15 LIBS = @LIBS@
16
17 ## Files
18 OBJ_DIR = build
19 GENSRCS = cpudefs.cpp cpuemu.cpp cpustbl.cpp cputbl.h
20
21 # Wrappers which split the very large cpuemu.cpp into smaller compile units
22 GENEMUS = cpuemu1.cpp cpuemu2.cpp cpuemu3.cpp cpuemu4.cpp \
23 cpuemu5.cpp cpuemu6.cpp cpuemu7.cpp cpuemu8.cpp
24
25 # Symlinks to files in other directories
26 GENLINK = README.txt acconfig.h install-sh \
27 config.guess config.sub user_strings_unix.h
28
29 GEN = $(GENEMUS) $(GENSRCS) $(GENLINK)
30
31 SRCS = BasiliskII.icns Controller.h Controller.mm Credits.html \
32 Emulator.h Emulator.mm EmulatorView.h EmulatorView.mm English.lproj \
33 NNThread.h NNThread.m PrefsEditor.h PrefsEditor.mm \
34 ToDo.html Versions.html \
35 audio_macosx.cpp extfs_macosx.mm macos_util_macosx.h main_macosx.h \
36 main_macosx.mm misc_macosx.h misc_macosx.mm prefs_macosx.cpp \
37 sysdeps.h video_macosx.mm video_macosx.h
38 APP = $(OBJ_DIR)/BasiliskII.app
39
40 ## Rules
41
42 .PHONY: mostlyclean clean distclean depend dep
43 .SUFFIXES:
44 .SUFFIXES: .c .cpp .s .o .h
45
46 all: $(APP)
47
48 ide: $(OBJ_DIR) $(GEN) $(SRCS)
49 open BasiliskII.pbproj
50
51 test: $(APP)
52 open $(APP)
53
54 $(OBJ_DIR)::
55 @[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
56
57
58 $(APP): $(OBJ_DIR) $(GENSRCS) $(SRCS)
59 pbxbuild -buildstyle Deployment
60 # pbxbuild
61
62 BasiliskII.icns :
63 touch $@
64
65 mostlyclean:
66 rm -fr English.lproj/*~* $(OBJ_DIR)/* core* *.core *~ *.bak
67
68 clean: mostlyclean
69 rm -f $(GEN)
70 rm -f cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp
71
72 distclean: clean
73 rm -fr $(OBJ_DIR)
74 rm -f config.cache config.log config.status config.h
75 rm -f configure
76 rm -f Makefile
77
78
79
80
81 $(OBJ_DIR)/build68k: ../uae_cpu/build68k.c
82 $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
83
84 $(OBJ_DIR)/cpuopti: ../uae_cpu/cpuopti.c
85 $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
86
87 #$(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
88 # $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $< -o $@
89
90 $(OBJ_DIR)/gencpu: $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
91 $(CC) $(LDFLAGS) $^ -o $@
92
93 $(OBJ_DIR)/gencpu.o : ../uae_cpu/gencpu.c
94 $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
95
96 $(OBJ_DIR)/readcpu.o: ../uae_cpu/readcpu.cpp
97 $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
98
99 $(OBJ_DIR)/cpudefs.o: cpudefs.cpp
100 $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
101
102
103 cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
104 $(OBJ_DIR)/build68k < ../uae_cpu/table68k > $@
105
106 cpuemu.cpp cpustbl.cpp cputbl.h: $(OBJ_DIR)/gencpu
107 $<
108
109
110 cpuemu1.cpp: cpuemu.cpp
111 echo '#define PART_1' > $@
112 echo '#include "$<"' >> $@
113 cpuemu2.cpp: cpuemu.cpp
114 echo '#define PART_2' > $@
115 echo '#include "$<"' >> $@
116 cpuemu3.cpp: cpuemu.cpp
117 echo '#define PART_3' > $@
118 echo '#include "$<"' >> $@
119 cpuemu4.cpp: cpuemu.cpp
120 echo '#define PART_4' > $@
121 echo '#include "$<"' >> $@
122 cpuemu5.cpp: cpuemu.cpp
123 echo '#define PART_5' > $@
124 echo '#include "$<"' >> $@
125 cpuemu6.cpp: cpuemu.cpp
126 echo '#define PART_6' > $@
127 echo '#include "$<"' >> $@
128 cpuemu7.cpp: cpuemu.cpp
129 echo '#define PART_7' > $@
130 echo '#include "$<"' >> $@
131 cpuemu8.cpp: cpuemu.cpp
132 echo '#define PART_8' > $@
133 echo '#include "$<"' >> $@
134
135 #cpuemu1.cpp: cpuemu.cpp
136 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -E $< > $@
137 #cpuemu2.cpp: cpuemu.cpp
138 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -E $< > $@
139 #cpuemu3.cpp: cpuemu.cpp
140 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -E $< > $@
141 #cpuemu4.cpp: cpuemu.cpp
142 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -E $< > $@
143 #cpuemu5.cpp: cpuemu.cpp
144 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -E $< > $@
145 #cpuemu6.cpp: cpuemu.cpp
146 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -E $< > $@
147 #cpuemu7.cpp: cpuemu.cpp
148 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -E $< > $@
149 #cpuemu8.cpp: cpuemu.cpp
150 # $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -E $< > $@
151
152
153 cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
154 $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o cputmp.s
155 $(OBJ_DIR)/cpuopti <cputmp.s >$@ || mv cputmp.s $@
156 rm -f cputmp.s
157 cpufast1.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
158 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -S $(CXXFLAGS) $< -o cputmp1.s
159 $(OBJ_DIR)/cpuopti <cputmp1.s >$@ || mv cputmp1.s $@
160 rm -f cputmp1.s
161 cpufast2.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
162 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -S $(CXXFLAGS) $< -o cputmp2.s
163 $(OBJ_DIR)/cpuopti <cputmp2.s >$@ || mv cputmp2.s $@
164 rm -f cputmp2.s
165 cpufast3.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
166 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -S $(CXXFLAGS) $< -o cputmp3.s
167 $(OBJ_DIR)/cpuopti <cputmp3.s >$@ || mv cputmp3.s $@
168 rm -f cputmp3.s
169 cpufast4.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
170 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -S $(CXXFLAGS) $< -o cputmp4.s
171 $(OBJ_DIR)/cpuopti <cputmp4.s >$@ || mv cputmp4.s $@
172 rm -f cputmp4.s
173 cpufast5.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
174 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -S $(CXXFLAGS) $< -o cputmp5.s
175 $(OBJ_DIR)/cpuopti <cputmp5.s >$@ || mv cputmp5.s $@
176 rm -f cputmp5.s
177 cpufast6.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
178 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -S $(CXXFLAGS) $< -o cputmp6.s
179 $(OBJ_DIR)/cpuopti <cputmp6.s >$@ || mv cputmp6.s $@
180 rm -f cputmp6.s
181 cpufast7.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
182 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -S $(CXXFLAGS) $< -o cputmp7.s
183 $(OBJ_DIR)/cpuopti <cputmp7.s >$@ || mv cputmp7.s $@
184 rm -f cputmp7.s
185 cpufast8.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
186 $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -S $(CXXFLAGS) $< -o cputmp8.s
187 $(OBJ_DIR)/cpuopti <cputmp8.s >$@ || mv cputmp8.s $@
188 rm -f cputmp8.s
189
190 #-------------------------------------------------------------------------
191 # DO NOT DELETE THIS LINE -- make depend depends on it.