catmario/Makefile
2017-03-01 10:38:17 +08:00

14 lines
No EOL
240 B
Makefile

OPTIONS = -o dlm.js \
-s NO_EXIT_RUNTIME=1 \
--js-library lib.js
SRC = loadg.cpp main.cpp
debug:
emcc -g4 $(OPTIONS) $(SRC)
release:
emcc -O3 -s OUTLINING_LIMIT=2000 --memory-init-file 0 $(OPTIONS) $(SRC)
clean:
rm dlm.js* dlm.data