ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/Makefile.in
Revision: 1.16
Committed: 2004-01-29T12:26:28Z (20 years, 5 months ago) by nigel
Branch: MAIN
CVS Tags: nigel-build-16
Changes since 1.15: +3 -2 lines
Log Message:
On second thoughts, not many people will be building on 10.1,
so it is better to create a dummy file now.

File Contents

# User Rev Content
1 nigel 1.16 # $Id: Makefile.in,v 1.15 2004/01/29 12:24:43 nigel Exp $
2 nigel 1.1 # MacOS X makefile for Basilisk II. Slightly based on the Unix one
3    
4     ## System specific configuration
5     @SET_MAKE@
6     SHELL = /bin/sh
7    
8    
9     CC = @CC@
10     CXX = @CXX@
11     CFLAGS = @CFLAGS@
12     CXXFLAGS = @CXXFLAGS@
13 nigel 1.5 CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
14 nigel 1.1 DEFS = @DEFS@ @DEFINES@ -D_REENTRANT
15     LDFLAGS = @LDFLAGS@
16     LIBS = @LIBS@
17 nigel 1.14 BLESS = @BLESS@
18     IDE = @IDE@
19     PROJECT = @PROJECT@
20     IDEARGS = @IDEARGS@
21 nigel 1.1
22     ## Files
23     OBJ_DIR = build
24 nigel 1.4 GENSRCS = cpudefs.cpp cpuemu.cpp cpustbl.cpp cputbl.h
25    
26     # Wrappers which split the very large cpuemu.cpp into smaller compile units
27     GENEMUS = cpuemu1.cpp cpuemu2.cpp cpuemu3.cpp cpuemu4.cpp \
28     cpuemu5.cpp cpuemu6.cpp cpuemu7.cpp cpuemu8.cpp
29    
30 nigel 1.12 # Symlinks to, or copies of, files in other directories
31 nigel 1.11 GENLINK = README.txt INSTALL.txt install-sh \
32 nigel 1.12 Darwin config.guess config.sub \
33 nigel 1.9 sys_unix.cpp timer_unix.cpp user_strings_unix.h
34 nigel 1.4
35 nigel 1.7 GEN = $(GENEMUS) $(GENSRCS)
36 nigel 1.4
37 nigel 1.3 SRCS = BasiliskII.icns Controller.h Controller.mm Credits.html \
38 nigel 1.1 Emulator.h Emulator.mm EmulatorView.h EmulatorView.mm English.lproj \
39     NNThread.h NNThread.m PrefsEditor.h PrefsEditor.mm \
40     ToDo.html Versions.html \
41 nigel 1.7 audio_macosx.mm extfs_macosx.mm macos_util_macosx.h main_macosx.h \
42 nigel 1.15 main_macosx.mm misc_macosx.h misc_macosx.mm nowrite.icns prefs_macosx.cpp \
43 nigel 1.1 sysdeps.h video_macosx.mm video_macosx.h
44     APP = $(OBJ_DIR)/BasiliskII.app
45    
46     ## Rules
47    
48     .PHONY: mostlyclean clean distclean depend dep
49     .SUFFIXES:
50     .SUFFIXES: .c .cpp .s .o .h
51    
52     all: $(APP)
53    
54 nigel 1.4 ide: $(OBJ_DIR) $(GEN) $(SRCS)
55 nigel 1.14 open $(PROJECT)
56 nigel 1.1
57     test: $(APP)
58     open $(APP)
59    
60     $(OBJ_DIR)::
61     @[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
62    
63    
64 nigel 1.6 $(APP): $(OBJ_DIR) $(GEN) $(SRCS)
65 nigel 1.14 $(IDE) -buildstyle Deployment $(IDEARGS) \
66     && $(BLESS) $(APP)/Contents/MacOS/BasiliskII \
67     || rm -fr $(APP)
68 nigel 1.1
69 nigel 1.3 BasiliskII.icns :
70     touch $@
71 nigel 1.15
72     nowrite.icns :
73 nigel 1.16 # ln -sf /System/Library/CoreServices/Finder.app/Contents/Resources/nowrite.icns .
74     touch $@
75 nigel 1.1
76     mostlyclean:
77     rm -fr English.lproj/*~* $(OBJ_DIR)/* core* *.core *~ *.bak
78    
79     clean: mostlyclean
80 nigel 1.4 rm -f $(GEN)
81 nigel 1.1 rm -f cpudefs.cpp cputmp*.s cpufast*.s cpustbl.cpp
82    
83     distclean: clean
84 nigel 1.12 rm -rf $(OBJ_DIR)
85     rm -rf autom4te.cache
86     rm -f Makefile
87 nigel 1.7 rm -f config.cache config.log config.status config.h config.h.in
88 nigel 1.12 rm -f Darwin/lowmem Darwin/pagezero
89     rm -f $(GENLINK)
90 nigel 1.1 rm -f configure
91 nigel 1.12 rm -f .DS_Store
92 nigel 1.1
93    
94    
95    
96     $(OBJ_DIR)/build68k: ../uae_cpu/build68k.c
97     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
98    
99     $(OBJ_DIR)/cpuopti: ../uae_cpu/cpuopti.c
100     $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(LDFLAGS) $< -o $@
101    
102 nigel 1.5 $(OBJ_DIR)/gencpu: cpudefs.cpp ../uae_cpu/gencpu.c ../uae_cpu/readcpu.cpp
103     $(CXX) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ -o $@
104 nigel 1.1
105    
106    
107     cpudefs.cpp: $(OBJ_DIR)/build68k ../uae_cpu/table68k
108     $(OBJ_DIR)/build68k < ../uae_cpu/table68k > $@
109    
110     cpuemu.cpp cpustbl.cpp cputbl.h: $(OBJ_DIR)/gencpu
111     $<
112    
113    
114 nigel 1.7 $(GENEMUS) : cpuemu.cpp
115     for i in 1 2 3 4 5 6 7 8; \
116     do \
117     printf "#define PART_%d\n#include \"%s\"\n" $$i $< >cpuemu$$i.cpp; \
118     done
119    
120    
121     cpufast.s: cpuemu.s $(OBJ_DIR)/cpuopti
122     $(OBJ_DIR)/cpuopti <cpuemu.s >$@ || mv cputmp.s $@
123    
124     cpuemu.s: cpuemu.cpp
125     $(CXX) $(CPPFLAGS) $(DEFS) -S $(CXXFLAGS) $< -o $@
126 nigel 1.1
127     #-------------------------------------------------------------------------
128     # DO NOT DELETE THIS LINE -- make depend depends on it.