mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-04-26 16:37:04 -05:00
14 lines
553 B
Makefile
14 lines
553 B
Makefile
GS_AREAWINDOW_STEM := files/data/gs_areawindow
|
|
GS_AREAWINDOW_NARC := $(GS_AREAWINDOW_STEM).narc
|
|
GS_AREAWINDOW_PNGS := $(wildcard $(GS_AREAWINDOW_STEM)/*.png)
|
|
GS_AREAWINDOW_NCGR := $(GS_AREAWINDOW_PNGS:%.png=%.NCGR)
|
|
GS_AREAWINDOW_NCLR := $(GS_AREAWINDOW_PNGS:%.png=%.NCLR)
|
|
$(GS_AREAWINDOW_NARC): $(GS_AREAWINDOW_NCGR) $(GS_AREAWINDOW_NCLR)
|
|
|
|
clean-gs-areawindow:
|
|
$(RM) $(GS_AREAWINDOW_NCGR) $(GS_AREAWINDOW_NCLR) $(GS_AREAWINDOW_NARC)
|
|
VERSION101_SOPC_NCGR_FILES += $(GS_AREAWINDOW_NCGR)
|
|
|
|
.PHONY: clean-gs-areawindow
|
|
clean-filesystem: clean-gs-areawindow
|