summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6f3e457..3711d67 100644
--- a/Makefile
+++ b/Makefile
@@ -7,15 +7,23 @@ LDFLAGS=-lSDL2 -lSDL2_ttf -lGLESv2 -lGL
EM_LDFALGS=-s USE_SDL=2 -s USE_SDL_IMAGE=2 -s SDL2_IMAGE_FORMATS='["png"]' -s USE_SDL_TTF=2 -s MAX_WEBGL_VERSION=2 -s MIN_WEBGL_VERSION=2 -s LLD_REPORT_UNDEFINED -s USE_GLFW=3
make:
- $(CC) -c koh.c -g3 -pg
- $(CC) -c fractal.c -g3 -pg
+ $(CC) -c koh.c -g3
+ $(CC) -c fractal.c -g3
#$(CC) -c fractal2.c
- $(CC) koh.o fractal.o -o fractal $(LDFLAGS) -g3 -pg
+ $(CC) koh.o fractal.o -o fractal $(LDFLAGS) -g3
#$(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"]'
#$(EMCC) fractal2.c koh.c -s WASM=1 -O3 -o index.js $(EM_LDFALGS) -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]'
+deploy:
+ #scp index.html segfault:~/public_html/draw.html
+ #scp index.js segfault:~/public_html/index.js
+ #scp index.wasm segfault:~/public_html/index.wasm
+ scp index.html fam@do2:/srv/http/wasm.main.lv/fractal
+ scp index.js fam@do2:/srv/http/wasm.main.lv/fractal
+ scp index.wasm fam@do2:/srv/http/wasm.main.lv/fractal
+
web:
- darkhttpd ./ --port 12345 \ No newline at end of file
+ darkhttpd ./ --port 12345