ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/Makefile.in
Revision: 1.10
Committed: 1999-10-12T20:00:52Z (24 years, 9 months ago) by cebix
Branch: MAIN
Changes since 1.9: +6 -5 lines
Log Message:
- disk insertions are now checked for by the 60Hz interrupt routine
- localizable strings are split into a common and a platform-specific set
- fixed bug in CR->LF translation in AmigaOS/clip_amiga.cpp

File Contents

# Content
1 # Unix makefile for Basilisk II
2
3 ## System specific configuration
4 @SET_MAKE@
5 SHELL = /bin/sh
6
7 prefix = @prefix@
8 exec_prefix = @exec_prefix@
9 bindir = @bindir@
10 datadir = @datadir@
11 mandir = @mandir@
12 man1dir = $(mandir)/man1
13
14 CC = @CC@
15 CXX = @CXX@
16 CFLAGS = @CFLAGS@
17 CXXFLAGS = @CXXFLAGS@
18 CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
19 DEFS = @DEFS@ @DEFINES@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\"
20 LDFLAGS = @LDFLAGS@
21 LIBS = @LIBS@
22 SYSSRCS = @SYSSRCS@
23 CPUSRCS = @CPUSRCS@
24 INSTALL = @INSTALL@
25 INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
26 INSTALL_DATA = @INSTALL_DATA@
27
28 ## Files
29 SRCS = main_unix.cpp ../prefs.cpp prefs_unix.cpp sys_unix.cpp ../rom_patches.cpp \
30 ../slot_rom.cpp ../rsrc_patches.cpp ../emul_op.cpp ../macos_util.cpp \
31 ../xpram.cpp xpram_unix.cpp ../timer.cpp timer_unix.cpp clip_unix.cpp \
32 ../adb.cpp ../serial.cpp serial_unix.cpp ../ether.cpp ../sony.cpp \
33 ../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp video_x.cpp ../audio.cpp \
34 ../user_strings.cpp user_strings_unix.cpp \
35 $(SYSSRCS) $(CPUSRCS)
36 APP = BasiliskII
37
38 ## Rules
39 .PHONY: modules install uninstall clean distclean depend
40 .SUFFIXES:
41 .SUFFIXES: .c .cpp .s .o .h
42
43 all: $(APP)
44
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 cd Linux/NetDriver; make
64
65 install: $(APP)
66 $(INSTALL_PROGRAM) $(APP) $(bindir)/$(APP)
67 -$(INSTALL_DATA) $(APP).1 $(man1dir)/$(APP).1
68 $(INSTALL) -d $(datadir)/$(APP)
69 $(INSTALL_DATA) keycodes $(datadir)/$(APP)/keycodes
70
71 uninstall:
72 rm -f $(bindir)/$(APP)
73 rm -f $(man1dir)/$(APP).1
74 rm -f $(datadir)/$(APP)/keycodes
75 rmdir $(datadir)/$(APP)
76
77 mostlyclean:
78 rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak
79
80 clean: mostlyclean
81 rm -f cpuemu.cpp cpudefs.cpp cputmp.s cpufast*.s cpustbl.cpp cputbl.h
82
83 distclean: clean
84 rm -rf $(OBJ_DIR)
85 rm -f Makefile
86 rm -f config.cache config.log config.status config.h
87
88 depend dep:
89 makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null
90
91 $(OBJ_DIR)/%.o : %.c
92 $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
93 $(OBJ_DIR)/%.o : %.cpp
94 $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
95 $(OBJ_DIR)/%.o : %.s
96 $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
97
98 $(OBJ_DIR)/cpuopti: $(OBJ_DIR)/cpuopti.o
99 $(CC) $(LDFLAGS) -o $(OBJ_DIR)/cpuopti $(OBJ_DIR)/cpuopti.o
100 $(OBJ_DIR)/build68k: $(OBJ_DIR)/build68k.o
101 $(CC) $(LDFLAGS) -o $(OBJ_DIR)/build68k $(OBJ_DIR)/build68k.o
102 $(OBJ_DIR)/gencpu: $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
103 $(CC) $(LDFLAGS) -o $(OBJ_DIR)/gencpu $(OBJ_DIR)/gencpu.o $(OBJ_DIR)/readcpu.o $(OBJ_DIR)/cpudefs.o
104 cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
105 $(OBJ_DIR)/build68k <../uae_cpu/table68k >cpudefs.cpp
106 cpuemu.cpp: $(OBJ_DIR)/gencpu
107 $(OBJ_DIR)/gencpu
108 cpustbl.cpp: cpuemu.cpp
109 cputbl.h: cpuemu.cpp
110 cpufast.s: cpuemu.cpp $(OBJ_DIR)/cpuopti
111 $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o cputmp.s
112 $(OBJ_DIR)/cpuopti <cputmp.s >$@ || mv cputmp.s $@
113 rm -f cputmp.s
114
115 #-------------------------------------------------------------------------
116 # DO NOT DELETE THIS LINE -- make depend depends on it.