summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturs Artamonovs <arturs.artamonovs@protonmail.com>2021-07-06 09:18:36 +0100
committerArturs Artamonovs <arturs.artamonovs@protonmail.com>2021-07-06 09:18:36 +0100
commit845dda7e5d0b8a19473166408ed138f0cb9d04ca (patch)
tree6c3da1dc0d89f560f7d8b5c369b71df306eed611
parent17daec9b5e991afb2ae3b3ff33c02e705ea94abd (diff)
downloadWasmAudio-845dda7e5d0b8a19473166408ed138f0cb9d04ca.tar.gz
WasmAudio-845dda7e5d0b8a19473166408ed138f0cb9d04ca.zip
Fixed source location variable
-rw-r--r--Build/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Build/Makefile b/Build/Makefile
index 30f0543..40d6a2e 100644
--- a/Build/Makefile
+++ b/Build/Makefile
@@ -1,11 +1,9 @@
EMCC=emcc
CC=gcc
-SOURCEDIR=../
+SOURCEDIR=../WasmAudio
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)/main.c -g3