diff options
author | Astatin <[email protected]> | 2025-07-12 02:45:00 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-07-12 02:45:00 +0200 |
commit | d77b156de83e8a93e3fa9832642824089593d1db (patch) | |
tree | f33a5a1f8bb54680b89db41e1ed8c26595a2231e /Makefile | |
parent | e9dc1a32f8e7199e020123e0377c665c0e1443a1 (diff) |
Play music from included vgm file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ 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) $(wildcard ./**/**/*.gbasm) +build/main.rom.unsigned: main.gbasm tileset.gbasm text.gbasm dialogues/text.gbasm map/maps.gbasm $(wildcard ./*.gbasm) $(wildcard ./**/*.gbasm) $(wildcard ./**/**/*.gbasm) $(wildcard ./music/*.vgm) mkdir -p build $(GBASM) $< $@ > build/main.sym @@ -58,7 +58,7 @@ build/game_linux_x86-64: build/makeself/start.sh build/makeself/main.rom build/m run: build/main.rom mkdir -p recordings - gb $< --record-input "./recordings/$(shell date -Iseconds).record" + gb $< --record-input "./recordings/$(shell date -Iseconds).record" -k sameboy: build/main.rom sameboy build/main.rom |