diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Build/Makefile b/Build/Makefile index 40d6a2e..6fe2da3 100644 --- a/Build/Makefile +++ b/Build/Makefile @@ -5,13 +5,12 @@ LDFLAGS=-lSDL2 -lSDL2_ttf EM_LDFALGS=-s USE_SDL=2 -s MAX_WEBGL_VERSION=2 -s MIN_WEBGL_VERSION=2 -s LLD_REPORT_UNDEFINED -s USE_GLFW=3 make: + $(CC) -c $(SOURCEDIR)/../FIR/firmath.c -g3 $(CC) -c $(SOURCEDIR)/main.c -g3 emcc: - $(EMCC) $(SOURCEDIR)/main.c -s WASM=1 -O3 -o index.js $(EM_LDFALGS) -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' + $(EMCC) $(SOURCEDIR)/main.c ../FIR/firmath.c -s WASM=1 -O3 -o index.js $(EM_LDFALGS) -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' - - web: darkhttpd ./ --port 12345 |