bacongamejam05-notsoalonein.../Makefile

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