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.18 by nigel, 2006-01-04T06:11:04Z

# Line 1 | Line 1
1 + # $Id$
2   # MacOS X makefile for Basilisk II. Slightly based on the Unix one
3  
4   ## System specific configuration
# Line 9 | Line 10 | CC = @CC@
10   CXX = @CXX@
11   CFLAGS = @CFLAGS@
12   CXXFLAGS = @CXXFLAGS@
13 < CPPFLAGS = @CPPFLAGS@ -I../include -I. -I../uae_cpu
13 > CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
14   DEFS = @DEFS@ @DEFINES@ -D_REENTRANT
15   LDFLAGS = @LDFLAGS@
16   LIBS = @LIBS@
17 + BLESS = @BLESS@
18 + IDE = @IDE@
19 + PROJECT = @PROJECT@
20 + IDEARGS = @IDEARGS@
21 + SLIRP_SRCS = @SLIRP_SRCS@
22  
23   ## Files
24   OBJ_DIR = build
25 < GENSRCS = user_strings_unix.h cpudefs.cpp cpuemu.cpp cpustbl.cpp cputbl.h \
26 <          README.txt
25 > GENSRCS = cpudefs.cpp cpuemu.cpp cpustbl.cpp cputbl.h
26 >
27 > # Wrappers which split the very large cpuemu.cpp into smaller compile units
28 > GENEMUS = cpuemu1.cpp cpuemu2.cpp cpuemu3.cpp cpuemu4.cpp \
29 >          cpuemu5.cpp cpuemu6.cpp cpuemu7.cpp cpuemu8.cpp
30 >
31 > # Symlinks to, or copies of, files in other directories
32 > GENLINK = README.txt INSTALL.txt install-sh \
33 >          Darwin config.guess config.sub semaphore.h \
34 >          sys_unix.cpp timer_unix.cpp user_strings_unix.h
35 >
36 > GEN  = $(GENEMUS) $(GENSRCS)
37 >
38   SRCS =  BasiliskII.icns Controller.h Controller.mm Credits.html \
39          Emulator.h Emulator.mm EmulatorView.h EmulatorView.mm English.lproj \
40          NNThread.h NNThread.m PrefsEditor.h PrefsEditor.mm \
41          ToDo.html Versions.html \
42 <        audio_macosx.cpp extfs_macosx.mm macos_util_macosx.h main_macosx.h \
43 <        main_macosx.mm misc_macosx.h misc_macosx.mm prefs_macosx.cpp \
44 <        sysdeps.h video_macosx.mm video_macosx.h
42 >        audio_macosx.mm extfs_macosx.mm macos_util_macosx.h main_macosx.h \
43 >        main_macosx.mm misc_macosx.h misc_macosx.mm nowrite.icns \
44 >        prefs_macosx.cpp sysdeps.h video_macosx.mm video_macosx.h
45 >
46 > SLIRP_OBJ = $(patsubst ../slirp/%.c, build/%.o, $(SLIRP_SRCS))
47 > SLIRP_LIB = libslirp.a
48 >
49   APP = $(OBJ_DIR)/BasiliskII.app
50  
51 + DEPS = $(OBJ_DIR) $(GEN) $(SLIRP_LIB) $(SRCS)
52 +
53   ## Rules
54  
55   .PHONY: mostlyclean clean distclean depend dep
# Line 35 | Line 58 | APP = $(OBJ_DIR)/BasiliskII.app
58  
59   all: $(APP)
60  
61 < ide: $(OBJ_DIR) $(GENSRCS) $(SRCS)
62 <        open BasiliskII.pbproj
61 > ide: $(DEPS)
62 >        open $(PROJECT)
63  
64   test: $(APP)
65          open $(APP)
# Line 45 | Line 68 | $(OBJ_DIR)::
68          @[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
69  
70  
71 < $(APP): $(OBJ_DIR) $(GENSRCS) $(SRCS)
72 <        pbxbuild -buildstyle Deployment
73 < #       pbxbuild
74 <
52 < README.txt : ../../README
53 <        ln -s $< $@
54 <
55 < user_strings_unix.h : ../Unix/user_strings_unix.h
56 <        ln -s $< $@
71 > $(APP): $(DEPS)
72 >        $(IDE) -buildstyle Deployment $(IDEARGS) \
73 >                && $(BLESS) $(APP)/Contents/MacOS/BasiliskII \
74 >                || rm -fr $(APP)
75  
76   BasiliskII.icns :
77          touch $@
78  
79 + nowrite.icns :
80 + #       ln -sf /System/Library/CoreServices/Finder.app/Contents/Resources/nowrite.icns .
81 +        touch $@
82 +
83   mostlyclean:
84          rm -fr English.lproj/*~* $(OBJ_DIR)/* core* *.core *~ *.bak
85 +        rm -fr autom4te.cache
86  
87   clean: mostlyclean
88 <        rm -f $(GENSRCS)
88 >        rm -f $(SLIRP_LIB)
89 >        rm -f $(GEN)
90          rm -f cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp
91  
92   distclean: clean
93 <        rm -fr $(OBJ_DIR)
94 <        rm -f config.cache config.log config.status config.h
71 <        rm -f configure
93 >        rm -rf $(OBJ_DIR)
94 >        rm -rf autom4te.cache
95          rm -f Makefile
96 +        rm -f config.cache config.log config.status config.h config.h.in
97 +        rm -f Darwin/lowmem Darwin/pagezero
98 +        rm -f $(GENLINK)
99 +        rm -f configure
100 +        rm -f .DS_Store
101  
102  
103  
# Line 80 | Line 108 | $(OBJ_DIR)/build68k: ../uae_cpu/build68k
108   $(OBJ_DIR)/cpuopti: ../uae_cpu/cpuopti.c
109          $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
110  
111 < #$(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
112 < #       $(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 $@
111 > $(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
112 >        $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ -o $@
113  
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 $@
114  
115  
116   cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
# Line 103 | Line 120 | cpuemu.cpp cpustbl.cpp cputbl.h: $(OBJ_D
120          $<
121  
122  
123 < $(OBJ_DIR)/cpuemu1.o: cpuemu.cpp
124 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 $(CXXFLAGS) -c $< -o $@
125 < $(OBJ_DIR)/cpuemu2.o: cpuemu.cpp
126 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 $(CXXFLAGS) -c $< -o $@
127 < $(OBJ_DIR)/cpuemu3.o: cpuemu.cpp
128 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 $(CXXFLAGS) -c $< -o $@
129 < $(OBJ_DIR)/cpuemu4.o: cpuemu.cpp
130 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 $(CXXFLAGS) -c $< -o $@
131 < $(OBJ_DIR)/cpuemu5.o: cpuemu.cpp
132 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 $(CXXFLAGS) -c $< -o $@
133 < $(OBJ_DIR)/cpuemu6.o: cpuemu.cpp
134 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 $(CXXFLAGS) -c $< -o $@
135 < $(OBJ_DIR)/cpuemu7.o: cpuemu.cpp
136 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 $(CXXFLAGS) -c $< -o $@
137 < $(OBJ_DIR)/cpuemu8.o: cpuemu.cpp
138 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 $(CXXFLAGS) -c $< -o $@
139 <
140 < cpuemu1.cpp: cpuemu.cpp
141 <        $(CXX) -E -DPART_1 $< >$@
125 < cpuemu2.cpp: cpuemu.cpp
126 <        $(CXX) -E -DPART_2 $< >$@
127 < cpuemu3.cpp: cpuemu.cpp
128 <        $(CXX) -E -DPART_3 $< >$@
129 < cpuemu4.cpp: cpuemu.cpp
130 <        $(CXX) -E -DPART_4 $< >$@
131 < cpuemu5.cpp: cpuemu.cpp
132 <        $(CXX) -E -DPART_5 $< >$@
133 < cpuemu6.cpp: cpuemu.cpp
134 <        $(CXX) -E -DPART_6 $< >$@
135 < cpuemu7.cpp: cpuemu.cpp
136 <        $(CXX) -E -DPART_7 $< >$@
137 < cpuemu8.cpp: cpuemu.cpp
138 <        $(CXX) -E -DPART_8 $< >$@
139 <
140 <
141 < cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
142 <        $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o cputmp.s
143 <        $(OBJ_DIR)/cpuopti <cputmp.s >$@ || mv cputmp.s $@
144 <        rm -f cputmp.s
145 < cpufast1.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
146 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -S $(CXXFLAGS) $< -o cputmp1.s
147 <        $(OBJ_DIR)/cpuopti <cputmp1.s >$@ || mv cputmp1.s $@
148 <        rm -f cputmp1.s
149 < cpufast2.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
150 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -S $(CXXFLAGS) $< -o cputmp2.s
151 <        $(OBJ_DIR)/cpuopti <cputmp2.s >$@ || mv cputmp2.s $@
152 <        rm -f cputmp2.s
153 < cpufast3.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
154 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -S $(CXXFLAGS) $< -o cputmp3.s
155 <        $(OBJ_DIR)/cpuopti <cputmp3.s >$@ || mv cputmp3.s $@
156 <        rm -f cputmp3.s
157 < cpufast4.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
158 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -S $(CXXFLAGS) $< -o cputmp4.s
159 <        $(OBJ_DIR)/cpuopti <cputmp4.s >$@ || mv cputmp4.s $@
160 <        rm -f cputmp4.s
161 < cpufast5.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
162 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -S $(CXXFLAGS) $< -o cputmp5.s
163 <        $(OBJ_DIR)/cpuopti <cputmp5.s >$@ || mv cputmp5.s $@
164 <        rm -f cputmp5.s
165 < cpufast6.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
166 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -S $(CXXFLAGS) $< -o cputmp6.s
167 <        $(OBJ_DIR)/cpuopti <cputmp6.s >$@ || mv cputmp6.s $@
168 <        rm -f cputmp6.s
169 < cpufast7.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
170 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -S $(CXXFLAGS) $< -o cputmp7.s
171 <        $(OBJ_DIR)/cpuopti <cputmp7.s >$@ || mv cputmp7.s $@
172 <        rm -f cputmp7.s
173 < cpufast8.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
174 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -S $(CXXFLAGS) $< -o cputmp8.s
175 <        $(OBJ_DIR)/cpuopti <cputmp8.s >$@ || mv cputmp8.s $@
176 <        rm -f cputmp8.s
123 > $(GENEMUS) : cpuemu.cpp
124 >        for i in 1 2 3 4 5 6 7 8; \
125 >        do \
126 >        printf "#define  PART_%d\n#include \"%s\"\n" $$i $<  >cpuemu$$i.cpp; \
127 >        done
128 >
129 >
130 > cpufast.s: cpuemu.s $(OBJ_DIR)/cpuopti
131 >        $(OBJ_DIR)/cpuopti <cpuemu.s >$@ || mv cputmp.s $@
132 >
133 > cpuemu.s: cpuemu.cpp
134 >        $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o $@
135 >
136 >
137 > $(SLIRP_OBJ) : build/%.o : ../slirp/%.c
138 >        $(CC) -I../slirp $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) -c $< -o $@
139 >
140 > $(SLIRP_LIB) : $(SLIRP_OBJ)
141 >        libtool -static -o libslirp.a build/*.o
142  
143   #-------------------------------------------------------------------------
144   # DO NOT DELETE THIS LINE -- make depend depends on it.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines