pokepinball/Makefile
2025-11-14 00:17:30 -05:00

70 lines
1.5 KiB
Makefile

.PHONY: all tools compare clean tidy
.SUFFIXES:
.SECONDEXPANSION:
.PRECIOUS:
.SECONDARY:
ROM := pokepinball.gbc
OBJS := main.o wram.o sram.o hram.o
ifeq (,$(shell which sha1sum))
SHA1 := shasum
else
SHA1 := sha1sum
endif
RGBDS ?=
RGBASM ?= $(RGBDS)rgbasm
RGBLINK ?= $(RGBDS)rgblink
RGBFIX ?= $(RGBDS)rgbfix
RGBGFX ?= $(RGBDS)rgbgfx
RGBASMFLAGS ?= -Weverything -Wtruncation=1
RGBLINKFLAGS ?= -Weverything -Wtruncation=1
RGBFIXFLAGS ?= -Weverything
RGBGFXFLAGS ?= -Weverything
all: $(ROM) compare
ifeq (,$(filter tools clean tidy,$(MAKECMDGOALS)))
Makefile: tools
endif
%.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
%.o: %.asm $$(dep)
$(RGBASM) $(RGBASMFLAGS) -o $@ $<
$(ROM): RGBLINKFLAGS += -l contents/contents.link -n $(ROM:.gbc=.sym) -m $(ROM:.gbc=.map)
$(ROM): RGBFIXFLAGS += -jsvc -k 01 -l 0x33 -m 0x1e -p 0 -r 02 -t "POKEPINBALL" -i VPHE
$(ROM): $(OBJS) contents/contents.link
$(RGBLINK) $(RGBLINKFLAGS) -o $@ $(OBJS)
$(RGBFIX) $(RGBFIXFLAGS) $@
# For contributors to make sure a change didn't affect the contents of the rom.
compare: $(ROM)
@$(SHA1) -c rom.sha1
tools:
$(MAKE) -C tools
tidy:
rm -f $(ROM) $(OBJS) $(ROM:.gbc=.sym) $(ROM:.gbc=.map)
$(MAKE) -C tools clean
clean: tidy
find . \( -iname '*.1bpp' -o -iname '*.2bpp' -o -iname '*.pcm' \) -exec rm {} +
%.interleave.2bpp: %.interleave.png
$(RGBGFX) -c dmg $(RGBGFXFLAGS) -o $@ $<
tools/gfx --interleave --png $< -o $@ $@
%.2bpp: %.png
$(RGBGFX) -c dmg $(RGBGFXFLAGS) -o $@ $<
%.1bpp: %.png
$(RGBGFX) -c dmg $(RGBGFXFLAGS) -d1 -o $@ $<
%.pcm: %.wav
tools/pcm -o $@ $<