From e2d7791085b71212ac0dc859bdab132e05f76ae7 Mon Sep 17 00:00:00 2001 From: Arturs Artamonovs Date: Thu, 15 Jul 2021 09:40:35 +0100 Subject: Added fir filter code and functions for buffer conversion --- Build/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Build/Makefile') 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 -- cgit v1.2.3