# change '../../em++' to path to em++ in emscriten folder CC=../../em++ # POST_JS is all the external js stuff that handles web audio etc POST_JS=src/js/maxi_webAudio.js #the .cpp file that is used SOURCE=src/cpp/maxi_emscr.cpp # destination .js file OUTPUT=maxiLib/maxiLib.js EXP_FUNCS=-s EXPORTED_FUNCTIONS="['_sumArray']" # https://kripken.github.io/emscripten-site/docs/tools_reference/emcc.html CFLAGS=-O2 $(EXP_FUNCS) -s DISABLE_EXCEPTION_CATCHING=0 -s ALLOW_MEMORY_GROWTH=1 --memory-init-file 0 --profiling all: $(CC) $(CFLAGS) --post-js $(POST_JS) --bind -o $(OUTPUT) $(SOURCE)