ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/Makefile.in
Revision: 1.15
Committed: 1999-10-26T16:56:38Z (24 years, 9 months ago) by cebix
Branch: MAIN
CVS Tags: snapshot-22121999, release-0_8-1, snapshot-02111999
Changes since 1.14: +1 -1 lines
Log Message:
- small fixes to Makefile.in and configure script
- main_unix.cpp tested ENABLE_DGA instead of ENABLE_XF86_DGA

File Contents

# User Rev Content
1 cebix 1.1 # Unix makefile for Basilisk II
2    
3     ## System specific configuration
4     @SET_MAKE@
5 cebix 1.9 SHELL = /bin/sh
6 cebix 1.3
7 cebix 1.6 prefix = @prefix@
8     exec_prefix = @exec_prefix@
9     bindir = @bindir@
10     datadir = @datadir@
11     mandir = @mandir@
12     man1dir = $(mandir)/man1
13 cebix 1.3
14 cebix 1.1 CC = @CC@
15     CXX = @CXX@
16     CFLAGS = @CFLAGS@
17     CXXFLAGS = @CXXFLAGS@
18     CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
19 cebix 1.6 DEFS = @DEFS@ @DEFINES@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\"
20 cebix 1.1 LDFLAGS = @LDFLAGS@
21     LIBS = @LIBS@
22     SYSSRCS = @SYSSRCS@
23     CPUSRCS = @CPUSRCS@
24 cebix 1.3 INSTALL = @INSTALL@
25     INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
26     INSTALL_DATA = @INSTALL_DATA@
27 cebix 1.1
28     ## Files
29 cebix 1.12 SRCS = ../main.cpp main_unix.cpp ../prefs.cpp prefs_unix.cpp sys_unix.cpp \
30     ../rom_patches.cpp ../slot_rom.cpp ../rsrc_patches.cpp ../emul_op.cpp \
31     ../macos_util.cpp ../xpram.cpp xpram_unix.cpp ../timer.cpp timer_unix.cpp \
32     clip_unix.cpp ../adb.cpp ../serial.cpp serial_unix.cpp ../ether.cpp ../sony.cpp \
33 cebix 1.10 ../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp video_x.cpp ../audio.cpp \
34 cebix 1.12 ../extfs.cpp extfs_unix.cpp ../user_strings.cpp user_strings_unix.cpp \
35 cebix 1.1 $(SYSSRCS) $(CPUSRCS)
36     APP = BasiliskII
37    
38     ## Rules
39 cebix 1.15 .PHONY: modules install uninstall clean distclean depend dep
40 cebix 1.9 .SUFFIXES:
41     .SUFFIXES: .c .cpp .s .o .h
42 cebix 1.2
43 cebix 1.9 all: $(APP)
44 cebix 1.1
45     OBJ_DIR = obj
46     $(OBJ_DIR)::
47     @[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
48    
49     define SRCS_LIST_TO_OBJS
50     $(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \
51     $(basename $(notdir $(file))))))
52     endef
53     OBJS = $(SRCS_LIST_TO_OBJS)
54    
55     SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file))))
56     VPATH :=
57     VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS))))
58    
59     $(APP): $(OBJ_DIR) $(OBJS)
60     $(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS)
61    
62     modules:
63 cebix 1.2 cd Linux/NetDriver; make
64 cebix 1.1
65 cebix 1.14 install: $(APP) installdirs
66 cebix 1.9 $(INSTALL_PROGRAM) $(APP) $(bindir)/$(APP)
67     -$(INSTALL_DATA) $(APP).1 $(man1dir)/$(APP).1
68     $(INSTALL_DATA) keycodes $(datadir)/$(APP)/keycodes
69 cebix 1.13 $(INSTALL_DATA) fbdevices $(datadir)/$(APP)/fbdevices
70 cebix 1.14
71     installdirs:
72     $(SHELL) mkinstalldirs $(bindir) $(man1dir) $(datadir)/$(APP)
73 cebix 1.5
74     uninstall:
75 cebix 1.9 rm -f $(bindir)/$(APP)
76     rm -f $(man1dir)/$(APP).1
77     rm -f $(datadir)/$(APP)/keycodes
78 cebix 1.13 rm -f $(datadir)/$(APP)/fbdevices
79 cebix 1.9 rmdir $(datadir)/$(APP)
80    
81     mostlyclean:
82     rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak
83    
84     clean: mostlyclean
85 cebix 1.11 rm -f cpuemu.cpp cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp cputbl.h
86 cebix 1.1
87     distclean: clean
88 cebix 1.9 rm -rf $(OBJ_DIR)
89     rm -f Makefile
90     rm -f config.cache config.log config.status config.h
91 cebix 1.1
92     depend dep:
93 cebix 1.8 makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null
94 cebix 1.1
95     $(OBJ_DIR)/%.o : %.c
96     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
97     $(OBJ_DIR)/%.o : %.cpp
98     $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
99     $(OBJ_DIR)/%.o : %.s
100     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
101    
102     $(OBJ_DIR)/cpuopti: $(OBJ_DIR)/cpuopti.o
103     $(CC) $(LDFLAGS) -o $(OBJ_DIR)/cpuopti $(OBJ_DIR)/cpuopti.o
104     $(OBJ_DIR)/build68k: $(OBJ_DIR)/build68k.o
105     $(CC) $(LDFLAGS) -o $(OBJ_DIR)/build68k $(OBJ_DIR)/build68k.o
106     $(OBJ_DIR)/gencpu: $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
107     $(CC) $(LDFLAGS) -o $(OBJ_DIR)/gencpu $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
108     cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
109     $(OBJ_DIR)/build68k <../uae_cpu/table68k >cpudefs.cpp
110 cebix 1.11 cpustbl.cpp: cpuemu.cpp
111     cputbl.h: cpuemu.cpp
112    
113 cebix 1.1 cpuemu.cpp: $(OBJ_DIR)/gencpu
114     $(OBJ_DIR)/gencpu
115 cebix 1.11
116     $(OBJ_DIR)/cpuemu1.o: cpuemu.cpp
117     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 $(CXXFLAGS) -c $< -o $@
118     $(OBJ_DIR)/cpuemu2.o: cpuemu.cpp
119     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 $(CXXFLAGS) -c $< -o $@
120     $(OBJ_DIR)/cpuemu3.o: cpuemu.cpp
121     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 $(CXXFLAGS) -c $< -o $@
122     $(OBJ_DIR)/cpuemu4.o: cpuemu.cpp
123     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 $(CXXFLAGS) -c $< -o $@
124     $(OBJ_DIR)/cpuemu5.o: cpuemu.cpp
125     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 $(CXXFLAGS) -c $< -o $@
126     $(OBJ_DIR)/cpuemu6.o: cpuemu.cpp
127     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 $(CXXFLAGS) -c $< -o $@
128     $(OBJ_DIR)/cpuemu7.o: cpuemu.cpp
129     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 $(CXXFLAGS) -c $< -o $@
130     $(OBJ_DIR)/cpuemu8.o: cpuemu.cpp
131     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 $(CXXFLAGS) -c $< -o $@
132    
133 cebix 1.1 cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
134     $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o cputmp.s
135     $(OBJ_DIR)/cpuopti <cputmp.s >$@ || mv cputmp.s $@
136     rm -f cputmp.s
137 cebix 1.11 cpufast1.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
138     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_1 -S $(CXXFLAGS) $< -o cputmp1.s
139     $(OBJ_DIR)/cpuopti <cputmp1.s >$@ || mv cputmp1.s $@
140     rm -f cputmp1.s
141     cpufast2.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
142     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_2 -S $(CXXFLAGS) $< -o cputmp2.s
143     $(OBJ_DIR)/cpuopti <cputmp2.s >$@ || mv cputmp2.s $@
144     rm -f cputmp2.s
145     cpufast3.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
146     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_3 -S $(CXXFLAGS) $< -o cputmp3.s
147     $(OBJ_DIR)/cpuopti <cputmp3.s >$@ || mv cputmp3.s $@
148     rm -f cputmp3.s
149     cpufast4.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
150     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_4 -S $(CXXFLAGS) $< -o cputmp4.s
151     $(OBJ_DIR)/cpuopti <cputmp4.s >$@ || mv cputmp4.s $@
152     rm -f cputmp4.s
153     cpufast5.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
154     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_5 -S $(CXXFLAGS) $< -o cputmp5.s
155     $(OBJ_DIR)/cpuopti <cputmp5.s >$@ || mv cputmp5.s $@
156     rm -f cputmp5.s
157     cpufast6.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
158     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_6 -S $(CXXFLAGS) $< -o cputmp6.s
159     $(OBJ_DIR)/cpuopti <cputmp6.s >$@ || mv cputmp6.s $@
160     rm -f cputmp6.s
161     cpufast7.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
162     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_7 -S $(CXXFLAGS) $< -o cputmp7.s
163     $(OBJ_DIR)/cpuopti <cputmp7.s >$@ || mv cputmp7.s $@
164     rm -f cputmp7.s
165     cpufast8.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
166     $(CXX) $(CPPFLAGS) $(DEFS) -DPART_8 -S $(CXXFLAGS) $< -o cputmp8.s
167     $(OBJ_DIR)/cpuopti <cputmp8.s >$@ || mv cputmp8.s $@
168     rm -f cputmp8.s
169 cebix 1.1
170     #-------------------------------------------------------------------------
171     # DO NOT DELETE THIS LINE -- make depend depends on it.