You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
176 B

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