blob: d471a2333fa78cb95d1229546f7b816751ac851e (
plain)
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
|
all: run
.PHONY: clean sclean
tileset.gbasm: ./scripts/generate-tiledata.py $(wildcard ./sprites/**/* ./sprites/*)
@echo "; THIS FILE IS GENERATED AUTOMATICALLY, DO NOT CHANGE" > $@
python ./scripts/generate-tiledata.py >> $@
%.gbasm: ./%.gbtxt ./scripts/generate_from_gbtxt.py
@echo "; THIS FILE IS GENERATED AUTOMATICALLY, DO NOT CHANGE" > $@
python ./scripts/generate_from_gbtxt.py $< >> $@
%.map.gbasm: ./%.ldtk ./scripts/parse-ldtkmap.py
@echo "; THIS FILE IS GENERATED AUTOMATICALLY, DO NOT CHANGE" > $@
python ./scripts/parse-ldtkmap.py $< >> $@
map/maps.gbasm: $(subst .ldtk,.map.gbasm,$(wildcard ./map/maps/*.ldtk))
@echo "; THIS FILE IS GENERATED AUTOMATICALLY, DO NOT CHANGE" > $@
ls ./map/maps/*.map.gbasm | sed 's/^\.\///' | awk '{print ".INCLUDE \""$$0"\"" }' >> $@
build/main.rom: build/main.rom.unsigned
cp build/main.rom.unsigned build/main.rom
python scripts/set_checksums.py build/main.rom
build/main.rom.unsigned: main.gbasm tileset.gbasm text.gbasm dialogues/text.gbasm map/maps.gbasm $(wildcard ./*.gbasm) $(wildcard ./**/*.gbasm)
mkdir -p build
gbasm $< $@ > build/main.sym
build/tileset-dump.rom: scripts/tileset-dump.gbasm
mkdir -p build
gbasm $< $@ > /dev/null
build/tileset-dump.rom.vram.dump: build/tileset-dump.rom
gb --skip-bootrom --stop-dump-state $<
build/tileset.png: build/tileset-dump.rom.vram.dump scripts/extract-vram-tileset.py
python scripts/extract-vram-tileset.py $< $@
run: build/main.rom
mkdir -p recordings
gb $< --record-input "./recordings/$(shell date -Iseconds).record"
sameboy: build/main.rom
sameboy build/main.rom
gearboy: build/main.rom
gearboy build/main.rom build/main.sym
clean:
rm -rf build
sclean: clean
rm tileset.gbasm
find . -name "*.gbtxt" | sed 's/\.gbtxt$/.gbasm/' | xargs rm
rm map/maps/*.map.gbasm map/maps.gbasm
|