view data/Makefile @ 794:8c2ef2d503c9 default tip

formats: Implement T6RP in Rust This has been tested against demo00.rpy shipped in CM.DAT.
author Link Mauve <linkmauve@linkmauve.fr>
date Tue, 02 Jun 2026 16:39:21 +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