view data/Makefile @ 222:5cac48b328ad

Refactor rendering code a bit. Move duplicated camera setup code to a new “setup_camera” method, and move common methods to a new “Renderer” module in order to make individual sprite rendering easier.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 18 Dec 2011 20:47:48 +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