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.3 by nigel, 2002-03-16T09:09:19Z vs.
Revision 1.6 by nigel, 2002-10-22T12:09:17Z

# 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@
16  
17   ## Files
18   OBJ_DIR = build
19 < GENSRCS = user_strings_unix.h cpudefs.cpp cpuemu.cpp cpustbl.cpp cputbl.h \
20 <          README.txt
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 \
# Line 35 | Line 45 | APP = $(OBJ_DIR)/BasiliskII.app
45  
46   all: $(APP)
47  
48 < ide: $(OBJ_DIR) $(GENSRCS) $(SRCS)
48 > ide: $(OBJ_DIR) $(GEN) $(SRCS)
49          open BasiliskII.pbproj
50  
51   test: $(APP)
# Line 45 | 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  
52 README.txt : ../../README
53        ln -s $< $@
54
55 user_strings_unix.h : ../Unix/user_strings_unix.h
56        ln -s $< $@
57
62   BasiliskII.icns :
63          touch $@
64  
# Line 62 | Line 66 | mostlyclean:
66          rm -fr English.lproj/*~* $(OBJ_DIR)/* core* *.core *~ *.bak
67  
68   clean: mostlyclean
69 <        rm -f $(GENSRCS)
69 >        rm -f $(GEN)
70          rm -f cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp
71  
72   distclean: clean
# Line 80 | Line 84 | $(OBJ_DIR)/build68k: ../uae_cpu/build68k
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 $@
85 <
86 < $(OBJ_DIR)/gencpu: $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
87 <        $(CC) $(LDFLAGS) $^ -o $@
88 <
89 < $(OBJ_DIR)/gencpu.o : ../uae_cpu/gencpu.c
90 <        $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
87 > $(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
88 >        $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ -o $@
89  
92 $(OBJ_DIR)/readcpu.o: ../uae_cpu/readcpu.cpp
93        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
94
95 $(OBJ_DIR)/cpudefs.o: cpudefs.cpp
96        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
90  
91  
92   cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
# Line 103 | Line 96 | cpuemu.cpp cpustbl.cpp cputbl.h: $(OBJ_D
96          $<
97  
98  
106 $(OBJ_DIR)/cpuemu1.o: cpuemu.cpp
107        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 $(CXXFLAGS) -c $< -o $@
108 $(OBJ_DIR)/cpuemu2.o: cpuemu.cpp
109        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 $(CXXFLAGS) -c $< -o $@
110 $(OBJ_DIR)/cpuemu3.o: cpuemu.cpp
111        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 $(CXXFLAGS) -c $< -o $@
112 $(OBJ_DIR)/cpuemu4.o: cpuemu.cpp
113        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 $(CXXFLAGS) -c $< -o $@
114 $(OBJ_DIR)/cpuemu5.o: cpuemu.cpp
115        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 $(CXXFLAGS) -c $< -o $@
116 $(OBJ_DIR)/cpuemu6.o: cpuemu.cpp
117        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 $(CXXFLAGS) -c $< -o $@
118 $(OBJ_DIR)/cpuemu7.o: cpuemu.cpp
119        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 $(CXXFLAGS) -c $< -o $@
120 $(OBJ_DIR)/cpuemu8.o: cpuemu.cpp
121        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 $(CXXFLAGS) -c $< -o $@
122
99   cpuemu1.cpp: cpuemu.cpp
100 <        $(CXX) -E -DPART_1 $< >$@
100 >        echo '#define PART_1' > $@
101 >        echo '#include "$<"' >> $@
102   cpuemu2.cpp: cpuemu.cpp
103 <        $(CXX) -E -DPART_2 $< >$@
103 >        echo '#define PART_2' > $@
104 >        echo '#include "$<"' >> $@
105   cpuemu3.cpp: cpuemu.cpp
106 <        $(CXX) -E -DPART_3 $< >$@
106 >        echo '#define PART_3' > $@
107 >        echo '#include "$<"' >> $@
108   cpuemu4.cpp: cpuemu.cpp
109 <        $(CXX) -E -DPART_4 $< >$@
109 >        echo '#define PART_4' > $@
110 >        echo '#include "$<"' >> $@
111   cpuemu5.cpp: cpuemu.cpp
112 <        $(CXX) -E -DPART_5 $< >$@
112 >        echo '#define PART_5' > $@
113 >        echo '#include "$<"' >> $@
114   cpuemu6.cpp: cpuemu.cpp
115 <        $(CXX) -E -DPART_6 $< >$@
115 >        echo '#define PART_6' > $@
116 >        echo '#include "$<"' >> $@
117   cpuemu7.cpp: cpuemu.cpp
118 <        $(CXX) -E -DPART_7 $< >$@
118 >        echo '#define PART_7' > $@
119 >        echo '#include "$<"' >> $@
120   cpuemu8.cpp: cpuemu.cpp
121 <        $(CXX) -E -DPART_8 $< >$@
121 >        echo '#define PART_8' > $@
122 >        echo '#include "$<"' >> $@
123  
124  
125   cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines