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

Comparing BasiliskII/src/Unix/Makefile.in (file contents):
Revision 1.12 by cebix, 1999-10-19T17:41:34Z vs.
Revision 1.42 by gbeauche, 2006-04-16T21:25:41Z

# Line 11 | Line 11 | datadir = @datadir@
11   mandir = @mandir@
12   man1dir = $(mandir)/man1
13  
14 + KEYCODES = @KEYCODES@
15 +
16 + DESTDIR =
17 +
18   CC = @CC@
19   CXX = @CXX@
20   CFLAGS = @CFLAGS@
21   CXXFLAGS = @CXXFLAGS@
22 < CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
22 > CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@ -I../slirp
23   DEFS = @DEFS@ @DEFINES@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\"
24   LDFLAGS = @LDFLAGS@
25   LIBS = @LIBS@
26   SYSSRCS = @SYSSRCS@
27   CPUSRCS = @CPUSRCS@
28 + BLESS = @BLESS@
29 + EXEEXT = @EXEEXT@
30   INSTALL = @INSTALL@
31   INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
32   INSTALL_DATA = @INSTALL_DATA@
33  
34 + SLIRP_CFLAGS = @SLIRP_CFLAGS@
35 + SLIRP_SRCS = @SLIRP_SRCS@
36 + SLIRP_OBJS = $(SLIRP_SRCS:../slirp/%.c=obj/%.o)
37 +
38 + STANDALONE_GUI = @STANDALONE_GUI@
39 + GUI_CFLAGS = @GUI_CFLAGS@
40 + GUI_LIBS = @GUI_LIBS@
41 + GUI_SRCS = ../prefs.cpp prefs_unix.cpp prefs_editor_gtk.cpp ../prefs_items.cpp \
42 +        ../user_strings.cpp user_strings_unix.cpp xpram_unix.cpp sys_unix.cpp rpc_unix.cpp
43 +
44   ## Files
45 < SRCS = ../main.cpp main_unix.cpp ../prefs.cpp prefs_unix.cpp sys_unix.cpp \
46 <    ../rom_patches.cpp ../slot_rom.cpp ../rsrc_patches.cpp ../emul_op.cpp \
47 <    ../macos_util.cpp ../xpram.cpp xpram_unix.cpp ../timer.cpp timer_unix.cpp \
48 <    clip_unix.cpp ../adb.cpp ../serial.cpp serial_unix.cpp ../ether.cpp ../sony.cpp \
49 <    ../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp video_x.cpp ../audio.cpp \
50 <    ../extfs.cpp extfs_unix.cpp ../user_strings.cpp user_strings_unix.cpp \
51 <    $(SYSSRCS) $(CPUSRCS)
45 > SRCS = ../main.cpp main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp \
46 >    sys_unix.cpp ../rom_patches.cpp ../slot_rom.cpp ../rsrc_patches.cpp \
47 >    ../emul_op.cpp ../macos_util.cpp ../xpram.cpp xpram_unix.cpp ../timer.cpp \
48 >    timer_unix.cpp ../adb.cpp ../serial.cpp ../ether.cpp \
49 >    ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp video_blit.cpp \
50 >    vm_alloc.cpp sigsegv.cpp ../audio.cpp ../extfs.cpp \
51 >        ../user_strings.cpp user_strings_unix.cpp sshpty.c strlcpy.c rpc_unix.cpp \
52 >    $(SYSSRCS) $(CPUSRCS) $(SLIRP_SRCS)
53   APP = BasiliskII
54 + APP_APP = $(APP).app
55 +
56 + PROGS = $(APP)$(EXEEXT)
57 + ifeq ($(STANDALONE_GUI),yes)
58 + GUI_APP = BasiliskIIGUI
59 + PROGS += $(GUI_APP)$(EXEEXT)
60 + else
61 + CXXFLAGS += $(GUI_CFLAGS)
62 + LIBS += $(GUI_LIBS)
63 + endif
64  
65   ## Rules
66 < .PHONY: modules install uninstall clean distclean depend
66 > .PHONY: modules install installdirs uninstall mostlyclean clean distclean depend dep
67   .SUFFIXES:
68   .SUFFIXES: .c .cpp .s .o .h
69  
70 < all: $(APP)
70 > all: $(PROGS)
71  
72   OBJ_DIR = obj
73   $(OBJ_DIR)::
# Line 52 | Line 79 | define SRCS_LIST_TO_OBJS
79   endef
80   OBJS = $(SRCS_LIST_TO_OBJS)
81  
82 + define GUI_SRCS_LIST_TO_OBJS
83 +        $(addprefix $(OBJ_DIR)/, $(addsuffix .go, $(foreach file, $(GUI_SRCS), \
84 +        $(basename $(notdir $(file))))))
85 + endef
86 + GUI_OBJS = $(GUI_SRCS_LIST_TO_OBJS)
87 +
88   SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file))))
89   VPATH :=
90   VPATH += $(addprefix :, $(subst  ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS))))
91  
92 < $(APP): $(OBJ_DIR) $(OBJS)
93 <        $(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS)
92 > $(APP)$(EXEEXT): $(OBJ_DIR) $(OBJS)
93 >        $(CXX) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
94 >        $(BLESS) $(APP)$(EXEEXT)
95 >
96 > $(GUI_APP)$(EXEEXT): $(OBJ_DIR) $(GUI_OBJS)
97 >        $(CXX) -o $@ $(LDFLAGS) $(GUI_OBJS) $(LIBS) $(GUI_LIBS)
98 >
99 > $(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/$(APP).icns
100 >        mkdir -p $(APP_APP)/Contents
101 >        cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/
102 >        echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo
103 >        mkdir -p $(APP_APP)/Contents/MacOS
104 >        cp -f $(APP) $(APP_APP)/Contents/MacOS/
105 >        strip $(APP_APP)/Contents/MacOS/$(APP)
106 >        mkdir -p $(APP_APP)/Contents/Resources
107 >        cp -f ../MacOSX/$(APP).icns $(APP_APP)/Contents/Resources/
108  
109   modules:
110          cd Linux/NetDriver; make
111  
112 < install: $(APP)
113 <        $(INSTALL_PROGRAM) $(APP) $(bindir)/$(APP)
114 <        -$(INSTALL_DATA) $(APP).1 $(man1dir)/$(APP).1
115 <        $(INSTALL) -d $(datadir)/$(APP)
116 <        $(INSTALL_DATA) keycodes $(datadir)/$(APP)/keycodes
112 > install: $(PROGS) installdirs
113 >        $(INSTALL_PROGRAM) $(APP)$(EXEEXT) $(DESTDIR)$(bindir)/$(APP)$(EXEEXT)
114 >        if test -f "$(GUI_APP)$(EXEEXT)"; then \
115 >          $(INSTALL_PROGRAM) $(GUI_APP)$(EXEEXT) $(DESTDIR)$(bindir)/$(GUI_APP)$(EXEEXT); \
116 >        fi
117 >        -$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1
118 >        $(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes
119 >        $(INSTALL_DATA) fbdevices $(DESTDIR)$(datadir)/$(APP)/fbdevices
120 >        $(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig
121 >
122 > installdirs:
123 >        $(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP)
124  
125   uninstall:
126 <        rm -f $(bindir)/$(APP)
127 <        rm -f $(man1dir)/$(APP).1
128 <        rm -f $(datadir)/$(APP)/keycodes
129 <        rmdir $(datadir)/$(APP)
126 >        rm -f $(DESTDIR)$(bindir)/$(APP)$(EXEEXT)
127 >        rm -f $(DESTDIR)$(bindir)/$(GUI_APP)$(EXEEXT)
128 >        rm -f $(DESTDIR)$(man1dir)/$(APP).1
129 >        rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes
130 >        rm -f $(DESTDIR)$(datadir)/$(APP)/fbdevices
131 >        rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig
132 >        rmdir $(DESTDIR)$(datadir)/$(APP)
133  
134   mostlyclean:
135 <        rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak
135 >        rm -f $(PROGS) $(OBJ_DIR)/* core* *.core *~ *.bak
136  
137   clean: mostlyclean
138 <        rm -f cpuemu.cpp cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp cputbl.h
138 >        rm -f cpuemu.cpp cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp cputbl.h compemu.cpp compstbl.cpp comptbl.h
139  
140   distclean: clean
141          rm -rf $(OBJ_DIR)
142 +        rm -rf autom4te.cache
143          rm -f Makefile
144          rm -f config.cache config.log config.status config.h
145 +        rm -f Darwin/lowmem Darwin/pagezero
146  
147   depend dep:
148          makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null
149  
150 + $(OBJ_DIR)/%.o : ../slirp/%.c
151 +        $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(SLIRP_CFLAGS) -c $< -o $@
152   $(OBJ_DIR)/%.o : %.c
153          $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
154   $(OBJ_DIR)/%.o : %.cpp
155          $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
156 + $(OBJ_DIR)/%.o : %.mm
157 +        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
158   $(OBJ_DIR)/%.o : %.s
159          $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
160 + $(OBJ_DIR)/%.go : %.cpp
161 +        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(GUI_CFLAGS) -c $< -o $@
162  
163 < $(OBJ_DIR)/cpuopti: $(OBJ_DIR)/cpuopti.o
164 <        $(CC) $(LDFLAGS) -o $(OBJ_DIR)/cpuopti $(OBJ_DIR)/cpuopti.o
165 < $(OBJ_DIR)/build68k: $(OBJ_DIR)/build68k.o
166 <        $(CC) $(LDFLAGS) -o $(OBJ_DIR)/build68k $(OBJ_DIR)/build68k.o
167 < $(OBJ_DIR)/gencpu: $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
168 <        $(CC) $(LDFLAGS) -o $(OBJ_DIR)/gencpu $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
169 < cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
170 <        $(OBJ_DIR)/build68k <../uae_cpu/table68k >cpudefs.cpp
163 > # Windows resources
164 > $(OBJ_DIR)/%.o: %.rc
165 >        windres --include-dir ../Windows -i $< -o $@
166 >
167 > $(OBJ_DIR)/build68k$(EXEEXT): $(OBJ_DIR)/build68k.o
168 >        $(CC) $(LDFLAGS) -o $(OBJ_DIR)/build68k$(EXEEXT) $(OBJ_DIR)/build68k.o
169 > $(OBJ_DIR)/gencpu$(EXEEXT): $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
170 >        $(CXX) $(LDFLAGS) -o $(OBJ_DIR)/gencpu$(EXEEXT) $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
171 > $(OBJ_DIR)/gencomp$(EXEEXT): $(OBJ_DIR)/gencomp.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
172 >        $(CXX) $(LDFLAGS) -o $(OBJ_DIR)/gencomp$(EXEEXT) $(OBJ_DIR)/gencomp.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
173 >
174 > cpudefs.cpp: $(OBJ_DIR)/build68k$(EXEEXT) ../uae_cpu/table68k
175 >        $(OBJ_DIR)/build68k$(EXEEXT) <../uae_cpu/table68k >cpudefs.cpp
176   cpustbl.cpp: cpuemu.cpp
177 + cpustbl_nf.cpp: cpustbl.cpp
178 + compstbl.cpp: compemu.cpp
179   cputbl.h: cpuemu.cpp
180 + comptbl.h: compemu.cpp
181 +
182 + cpuemu.cpp: $(OBJ_DIR)/gencpu$(EXEEXT)
183 +        $(OBJ_DIR)/gencpu$(EXEEXT)
184 +
185 + compemu.cpp: $(OBJ_DIR)/gencomp$(EXEEXT)
186 +        $(OBJ_DIR)/gencomp$(EXEEXT)
187  
188 < cpuemu.cpp: $(OBJ_DIR)/gencpu
189 <        $(OBJ_DIR)/gencpu
188 > $(OBJ_DIR)/cpustbl_nf.o: cpustbl.cpp
189 >        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -DNOFLAGS -c $< -o $@
190 >
191 > $(OBJ_DIR)/compemu_support.o: compemu_support.cpp comptbl.h
192 >        $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
193  
194   $(OBJ_DIR)/cpuemu1.o: cpuemu.cpp
195          $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 $(CXXFLAGS) -c $< -o $@
# Line 126 | Line 208 | $(OBJ_DIR)/cpuemu7.o: cpuemu.cpp
208   $(OBJ_DIR)/cpuemu8.o: cpuemu.cpp
209          $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 $(CXXFLAGS) -c $< -o $@
210  
211 < cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
212 <        $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o cputmp.s
213 <        $(OBJ_DIR)/cpuopti <cputmp.s >$@ || mv cputmp.s $@
214 <        rm -f cputmp.s
215 < cpufast1.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
216 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -S $(CXXFLAGS) $< -o cputmp1.s
217 <        $(OBJ_DIR)/cpuopti <cputmp1.s >$@ || mv cputmp1.s $@
218 <        rm -f cputmp1.s
219 < cpufast2.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
220 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -S $(CXXFLAGS) $< -o cputmp2.s
221 <        $(OBJ_DIR)/cpuopti <cputmp2.s >$@ || mv cputmp2.s $@
222 <        rm -f cputmp2.s
223 < cpufast3.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
224 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -S $(CXXFLAGS) $< -o cputmp3.s
225 <        $(OBJ_DIR)/cpuopti <cputmp3.s >$@ || mv cputmp3.s $@
226 <        rm -f cputmp3.s
227 < cpufast4.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
228 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -S $(CXXFLAGS) $< -o cputmp4.s
229 <        $(OBJ_DIR)/cpuopti <cputmp4.s >$@ || mv cputmp4.s $@
230 <        rm -f cputmp4.s
231 < cpufast5.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
232 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -S $(CXXFLAGS) $< -o cputmp5.s
233 <        $(OBJ_DIR)/cpuopti <cputmp5.s >$@ || mv cputmp5.s $@
234 <        rm -f cputmp5.s
235 < cpufast6.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
236 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -S $(CXXFLAGS) $< -o cputmp6.s
237 <        $(OBJ_DIR)/cpuopti <cputmp6.s >$@ || mv cputmp6.s $@
238 <        rm -f cputmp6.s
239 < cpufast7.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
240 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -S $(CXXFLAGS) $< -o cputmp7.s
241 <        $(OBJ_DIR)/cpuopti <cputmp7.s >$@ || mv cputmp7.s $@
242 <        rm -f cputmp7.s
243 < cpufast8.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
162 <        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -S $(CXXFLAGS) $< -o cputmp8.s
163 <        $(OBJ_DIR)/cpuopti <cputmp8.s >$@ || mv cputmp8.s $@
164 <        rm -f cputmp8.s
211 > $(OBJ_DIR)/cpuemu1_nf.o: cpuemu.cpp
212 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
213 > $(OBJ_DIR)/cpuemu2_nf.o: cpuemu.cpp
214 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
215 > $(OBJ_DIR)/cpuemu3_nf.o: cpuemu.cpp
216 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
217 > $(OBJ_DIR)/cpuemu4_nf.o: cpuemu.cpp
218 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
219 > $(OBJ_DIR)/cpuemu5_nf.o: cpuemu.cpp
220 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
221 > $(OBJ_DIR)/cpuemu6_nf.o: cpuemu.cpp
222 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
223 > $(OBJ_DIR)/cpuemu7_nf.o: cpuemu.cpp
224 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
225 > $(OBJ_DIR)/cpuemu8_nf.o: cpuemu.cpp
226 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -DNOFLAGS $(CXXFLAGS) -c $< -o $@
227 >
228 > $(OBJ_DIR)/compemu1.o: compemu.cpp
229 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 $(CXXFLAGS) -c $< -o $@
230 > $(OBJ_DIR)/compemu2.o: compemu.cpp
231 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 $(CXXFLAGS) -c $< -o $@
232 > $(OBJ_DIR)/compemu3.o: compemu.cpp
233 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 $(CXXFLAGS) -c $< -o $@
234 > $(OBJ_DIR)/compemu4.o: compemu.cpp
235 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 $(CXXFLAGS) -c $< -o $@
236 > $(OBJ_DIR)/compemu5.o: compemu.cpp
237 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 $(CXXFLAGS) -c $< -o $@
238 > $(OBJ_DIR)/compemu6.o: compemu.cpp
239 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 $(CXXFLAGS) -c $< -o $@
240 > $(OBJ_DIR)/compemu7.o: compemu.cpp
241 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 $(CXXFLAGS) -c $< -o $@
242 > $(OBJ_DIR)/compemu8.o: compemu.cpp
243 >        $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 $(CXXFLAGS) -c $< -o $@
244  
245   #-------------------------------------------------------------------------
246   # DO NOT DELETE THIS LINE -- make depend depends on it.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines