Add a makefile

This commit is contained in:
Aaron Mueller 2013-06-13 21:44:41 +02:00
parent 76988a1af7
commit b98e66ec70
1 changed files with 6 additions and 0 deletions

6
Makefile Normal file
View File

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