From 50756d266af3dd94d55a9b0d3b6e7e4f953ac627 Mon Sep 17 00:00:00 2001 From: ZoRo Date: Wed, 21 Oct 2020 21:24:36 +0100 Subject: Working fractal drawing --- Makefile | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7f8696f..9e99e53 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,21 @@ - +#source "/home/fam/downloads/source/wasm/emsdk/emsdk_env.sh" +#EMCC=/usr/lib/emscripten/emcc +#ENV=LLVM=/usr/bin NODE_JS=node EMSCRIPTEN_ROOT=/usr/lib/emscripten +EMCC=emcc CC=gcc +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 $(CC) -c fractal.c - $(CC) koh.o fractal.o -o fractal -lSDL2 \ No newline at end of file + $(CC) -c fractal2.c + $(CC) koh.o fractal.o -o fractal $(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"]' + #$(EMCC) fractal2.c koh.c -s WASM=1 -O3 -o index.js $(EM_LDFALGS) -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' + +web: + darkhttpd ./ --port 12345 \ No newline at end of file -- cgit v1.2.3