-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
57 lines (40 loc) · 2.34 KB
/
Makefile
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
ASM_DIR=asm
RES_DIR=res
BUILD_DIR=bin
CFG_DIR=cfg
INC_DIR=inc
EXAMPLES_DIR=examples
DOCS_DIR=docs
DDK?=../
RESCOMP ?= $(DDK)/rescomp/target/rescomp.jar
DDK_VERSION ?= 0.1.3
CC65_PATH ?= /usr/share/cc65
all: $(BUILD_DIR)/durango.lib $(INC_DIR)/font.h
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)
$(BUILD_DIR)/crt0.o: $(ASM_DIR)/crt0.s $(BUILD_DIR)
cp $(ASM_DIR)/crt0.s $(BUILD_DIR)/crt0.s && java -jar ${RESCOMP} -m STAMP -n DCLIB -o $$(git log -1 | head -1 | sed 's/commit //' | cut -c1-8) -i $(BUILD_DIR)/crt0.s && ca65 -t none $(BUILD_DIR)/crt0.s -o $(BUILD_DIR)/crt0.o
$(BUILD_DIR)/durango.lib: $(BUILD_DIR)/crt0.o $(BUILD_DIR)/geometrics.o $(BUILD_DIR)/glyph.o $(BUILD_DIR)/common.o $(BUILD_DIR)/system.o $(BUILD_DIR)/sprites.o $(BUILD_DIR)/psv.o $(BUILD_DIR)/qgraph.o $(BUILD_DIR)/music.o $(BUILD_DIR)
cp ${CC65_PATH}/lib/supervision.lib $(BUILD_DIR)/durango.lib && ar65 a $(BUILD_DIR)/durango.lib $(BUILD_DIR)/common.o $(BUILD_DIR)/sprites.o $(BUILD_DIR)/psv.o $(BUILD_DIR)/system.o $(BUILD_DIR)/geometrics.o $(BUILD_DIR)/glyph.o $(BUILD_DIR)/music.o $(BUILD_DIR)/crt0.o
$(BUILD_DIR)/common.o: $(ASM_DIR)/common.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/common.s -o $(BUILD_DIR)/common.o
$(INC_DIR)/font.h: ${RES_DIR}/font.png
java -jar ${RESCOMP} -n font -m FONT -i ${RES_DIR}/font.png -h 8 -w 5 -o $(INC_DIR)/font.h
$(BUILD_DIR)/qgraph.o: $(ASM_DIR)/qgraph.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/qgraph.s -o $(BUILD_DIR)/qgraph.o
$(BUILD_DIR)/music.o: $(ASM_DIR)/music.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/music.s -o $(BUILD_DIR)/music.o
$(BUILD_DIR)/psv.o: $(ASM_DIR)/psv.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/psv.s -o $(BUILD_DIR)/psv.o
$(BUILD_DIR)/system.o: $(ASM_DIR)/system.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/system.s -o $(BUILD_DIR)/system.o
$(BUILD_DIR)/sprites.o: $(ASM_DIR)/sprites.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/sprites.s -o $(BUILD_DIR)/sprites.o
$(BUILD_DIR)/geometrics.o: $(ASM_DIR)/geometrics.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/geometrics.s -o $(BUILD_DIR)/geometrics.o
$(BUILD_DIR)/glyph.o: $(ASM_DIR)/glyph.s $(BUILD_DIR)
ca65 -t none $(ASM_DIR)/glyph.s -o $(BUILD_DIR)/glyph.o
clean:
rm -Rf $(BUILD_DIR) $(INC_DIR)/font.h
zip: $(BUILD_DIR)/durango.lib
zip -r durangolib-$(DDK_VERSION)-$$(git log -1 | head -1 | sed 's/commit //' | cut -c1-8).zip $(INC_DIR)/* $(CFG_DIR)/* $(EXAMPLES_DIR)/* $(DOCS_DIR)/* $(BUILD_DIR)/durango.lib