-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile.mac
79 lines (58 loc) · 2 KB
/
Makefile.mac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#LIBS=/opt/ldc/build/lib/libphobos-ldc.a /opt/ldc/build/lib/libdruntime-ldc.a -lstdc++
#LIBS=/opt/ldc2/lib/libphobos-ldc.a /opt/ldc2/lib/libdruntime-ldc.a -lstdc++
LIBS=/usr/local/lib/libphobos2-ldc.a /usr/local/lib/libdruntime-ldc.a -lstdc++
FRAMEWORKS=-framework Foundation -framework SDL
COMFLAGS= -mmacosx-version-min=10.7
VERSION=$(shell cat Version)
DLINK=$(COMFLAGS)
DFLAGS=-I./src -J./src/c64 -J./src/font
CFLAGS=$(COMFLAGS)
CXXFLAGS=$(CFLAGS) -I./src -O2
LDFLAGS=-rpath,@executable_path/../Frameworks
COMPILE.d = $(DC) $(DFLAGS) -d -O2 -c -of=$@
DC=ldc2
EXE=
TARGET=ccutter
OBJ_EXT=.o
include Makefile.objects.mk
$(TARGET): $(C64OBJS) $(OBJS) $(CXX_OBJS)
$(CC) $(DLINK) -Wl,$(LDFLAGS) -o $(TARGET) $(OBJS) $(CXX_OBJS) $(LIBS) $(FRAMEWORKS)
.cpp.o : $(CXX_SRCS)
$(CXX) $(CXXFLAGS) -c $< -o $@
.c.o : $(C_SRCS)
$(CC) -c $< -o $@
ct: $(C64OBJS) $(CTOBJS)
ct2util: $(C64OBJS) $(UTILOBJS)
$(CC) $(DLINK) -o $@ $(UTILOBJS) $(LIBS)
c64: $(C64OBJS)
all: c64 $(OBJS) $(CXX_OBJS) ct2util ct $(TARGET)
release: all
strip ccutter$(EXE)
strip ct2util$(EXE)
rm -rf CheeseCutter.app
mkdir -p CheeseCutter.app/Contents/Frameworks
mkdir -p CheeseCutter.app/Contents/MacOS
cp -r arch/MacOS/Contents CheeseCutter.app
cp -r /Library/Frameworks/SDL.framework CheeseCutter.app/Contents/Frameworks
cp $(TARGET) CheeseCutter.app/Contents/MacOS
cp ct2util CheeseCutter.app/Contents/MacOS
dist: release
rm -rf dist
rm -rf CheeseCutter_$(VERSION).dmg
arch/makedmg.sh
clean:
rm -f *.o *~ resid/*.o resid-fp/*.o ccutter ct2util \
$(C64OBJS) $(OBJS) $(CTOBJS) $(CXX_OBJS) $(UTILOBJS)
dclean: clean
rm -rf dist
rm -rf CheeseCutter.app
rm -rf CheeseCutter_$(VERSION).dmg
tar:
git archive master --prefix=cheesecutter-$(VERSION)/ | bzip2 > cheesecutter-$(VERSION)-macosx-src.tar.bz2
# --------------------------------------------------------------------------------
src/c64/player.bin: src/c64/player_v4.acme
acme -f cbm --outfile $@ $<
src/ct/base.o: src/c64/player.bin
src/ui/ui.o: src/ui/help.o
%.o: %.d
$(COMPILE.d) $<