catmario/Makefile

15 lines
272 B
Makefile
Raw Normal View History

2015-10-25 21:35:44 +08:00
OPTIONS = -o dlm.js \
-s NO_EXIT_RUNTIME=1 \
--preload-file res \
--js-library lib.js
SRC = dxlib.cpp loadg.cpp main.cpp
2015-10-18 13:20:33 +08:00
debug:
2015-10-25 21:35:44 +08:00
emcc -g4 $(OPTIONS) $(SRC)
2015-10-18 23:31:57 +08:00
release:
2015-10-25 21:35:44 +08:00
emcc -O3 -s OUTLINING_LIMIT=2000 --memory-init-file 0 $(OPTIONS) $(SRC)
clean:
rm dlm.js* dlm.data