bacongamejam05-notsoalonein.../Makefile
Ruben Müller 9d6426a6f1 gedöns
2013-06-13 22:02:36 +02:00

8 lines
176 B
Makefile

compile: clean
for file in `cat compile.order`; do coffee -b -p -c src/$$file >> build/game.js; done
cp src/index.html build/index.html
clean:
rm -rf build/*
alle: compile