ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/Makefile.in
(Generate patch)

Comparing BasiliskII/src/MacOSX/Makefile.in (file contents):
Revision 1.4 by nigel, 2002-03-16T11:50:45Z vs.
Revision 1.7 by nigel, 2003-01-10T23:05:06Z

# Line 9 | Line 9 | CC = @CC@
9   CXX = @CXX@
10   CFLAGS = @CFLAGS@
11   CXXFLAGS = @CXXFLAGS@
12 < CPPFLAGS = @CPPFLAGS@ -I../include -I. -I../uae_cpu
12 > CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
13   DEFS = @DEFS@ @DEFINES@ -D_REENTRANT
14   LDFLAGS = @LDFLAGS@
15   LIBS = @LIBS@
# Line 23 | Line 23 | GENEMUS = cpuemu1.cpp cpuemu2.cpp cpuemu
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 \
26 > GENLINK = README.txt install-sh \
27            config.guess config.sub user_strings_unix.h
28  
29 < GEN  = $(GENEMUS) $(GENSRCS) $(GENLINK)
29 > GEN  = $(GENEMUS) $(GENSRCS)
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 \
35 >        audio_macosx.mm 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
# Line 55 | Line 55 | $(OBJ_DIR)::
55          @[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
56  
57  
58 < $(APP): $(OBJ_DIR) $(GENSRCS) $(SRCS)
58 > $(APP): $(OBJ_DIR) $(GEN) $(SRCS)
59          pbxbuild -buildstyle Deployment
60   #       pbxbuild
61  
# Line 71 | Line 71 | clean: mostlyclean
71  
72   distclean: clean
73          rm -fr $(OBJ_DIR)
74 <        rm -f config.cache config.log config.status config.h
74 >        rm -fr $(GENLINK)
75 >        rm -f config.cache config.log config.status config.h config.h.in
76          rm -f configure
77          rm -f Makefile
78  
# Line 84 | Line 85 | $(OBJ_DIR)/build68k: ../uae_cpu/build68k
85   $(OBJ_DIR)/cpuopti: ../uae_cpu/cpuopti.c
86          $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
87  
88 < #$(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
89 < #       $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $< -o $@
88 > $(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
89 >        $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ -o $@
90  
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 $@
91  
92  
93   cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
# Line 107 | Line 97 | cpuemu.cpp cpustbl.cpp cputbl.h: $(OBJ_D
97          $<
98  
99  
100 < cpuemu1.cpp: cpuemu.cpp
101 <        echo '#define PART_1' > $@
102 <        echo '#include "$<"' >> $@
103 < cpuemu2.cpp: cpuemu.cpp
104 <        echo '#define PART_2' > $@
105 <        echo '#include "$<"' >> $@
106 < cpuemu3.cpp: cpuemu.cpp
107 <        echo '#define PART_3' > $@
108 <        echo '#include "$<"' >> $@
109 < cpuemu4.cpp: cpuemu.cpp
110 <        echo '#define PART_4' > $@
111 <        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
100 > $(GENEMUS) : cpuemu.cpp
101 >        for i in 1 2 3 4 5 6 7 8; \
102 >        do \
103 >        printf "#define  PART_%d\n#include \"%s\"\n" $$i $<  >cpuemu$$i.cpp; \
104 >        done
105 >
106 >
107 > cpufast.s: cpuemu.s $(OBJ_DIR)/cpuopti
108 >        $(OBJ_DIR)/cpuopti <cpuemu.s >$@ || mv cputmp.s $@
109 >
110 > cpuemu.s: cpuemu.cpp
111 >        $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o $@
112  
113   #-------------------------------------------------------------------------
114   # DO NOT DELETE THIS LINE -- make depend depends on it.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines