summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9e99e53..31ecc79 100644
--- a/Makefile
+++ b/Makefile
@@ -9,9 +9,9 @@ EM_LDFALGS=-s USE_SDL=2 -s USE_SDL_IMAGE=2 -s SDL2_IMAGE_FORMATS='["png"]' -s US
make:
$(CC) -c koh.c
$(CC) -c fractal.c
- $(CC) -c fractal2.c
+ #$(CC) -c fractal2.c
$(CC) koh.o fractal.o -o fractal $(LDFLAGS)
- $(CC) koh.o fractal2.o -o fractal2 $(LDFLAGS)
+ #$(CC) koh.o fractal2.o -o fractal2 $(LDFLAGS)
emcc:
$(EMCC) fractal.c koh.c -s WASM=1 -O3 -o index.js $(EM_LDFALGS) -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]'