bacongamejam05-notsoalonein.../Makefile

8 lines
176 B
Makefile
Raw Normal View History

2013-06-13 21:44:41 +02:00
compile: clean
for file in `cat compile.order`; do coffee -b -p -c src/$$file >> build/game.js; done
2013-06-13 22:02:36 +02:00
cp src/index.html build/index.html
2013-06-13 21:44:41 +02:00
clean:
rm -rf build/*
2013-06-13 22:02:36 +02:00
alle: compile