view data/Makefile @ 276:754ff6452d7e

Fix spellcard number 0. Spellcard number 0 was evaluated as False in truth checks. Now, the spellcard is a tuple, with (number, name) and will always evaluate as True.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 05 Feb 2012 23:45:41 +0100
parents 0fa6bef94095
children 016f6b937893
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*


clean:
	make -C ST/ clean


mrproper:
	rm -f ST.DAT CM.DAT

.PHONY: clean mrproper ST