aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-03-13 19:08:09 +0900
committerAstatin <[email protected]>2025-03-13 19:08:09 +0900
commit62701690d1c7b95b639d63d0cb9cd6ebeb9ac876 (patch)
tree833c88d35818c4d63e7d440355254aeb47af2cfd /Makefile
parentab45947d3fdc9885c497d9fc3dd124c7986f6ea4 (diff)
Adding multi-step dialogue
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b7b1d2d..a5010d5 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,10 @@ all: run
tileset.gbasm: ./scripts/generate-tiledata.py $(wildcard ./sprites/**/* ./sprites/*)
python ./scripts/generate-tiledata.py > tileset.gbasm
-dialogues.gbasm: ./dialogues.gbtxt ./scripts/generate_from_gbtxt.py
- python ./scripts/generate_from_gbtxt.py dialogues.gbtxt > dialogues.gbasm
+%.gbasm: ./%.gbtxt ./scripts/generate_from_gbtxt.py
+ python ./scripts/generate_from_gbtxt.py $< > $@
-build/main.rom: main.gbasm tileset.gbasm dialogues.gbasm
+build/main.rom: main.gbasm tileset.gbasm text.gbasm dialogues/text.gbasm
mkdir -p build
gbasm $< $@ > build/main.sym