blurhash-c-wasm/Makefile

8 lines
307 B
Makefile
Raw Normal View History

2023-08-12 09:14:14 +00:00
LIBRARY=src/blurhash-decode.wasm
$(LIBRARY): blurhash/decode.c
emcc -flto -ffast-math -O3 --no-entry -Wl,--export,decodeToArray -Wl,--export,malloc -Wl,--export,free -Wl,--export,isValidBlurhash -s ALLOW_MEMORY_GROWTH -s INITIAL_MEMORY=128KB -o $@ blurhash/decode.c
2023-08-12 09:14:14 +00:00
.PHONY: clean
clean:
rm -f $(LIBRARY)