view data/Makefile @ 796:d876ac2ccfe1 default tip

Pass audio only once to GameRunner This prevents it being recreated every stage change, and playing music over the previous stages’ music.
author Link Mauve <linkmauve@linkmauve.fr>
date Sun, 28 Jun 2026 14:27:03 +0200
parents 016f6b937893
children
line wrap: on
line source

all: ST.DAT CM.DAT

ST:
	make -C ST

ST.DAT: ST
	thdat c6 ST.DAT ST/*


CM.DAT: ST
	thdat c6 CM.DAT ST/etama* ST/face00* ST/player*


clean:
	make -C ST/ clean


mrproper:
	rm -f ST.DAT CM.DAT

.PHONY: clean mrproper ST