2023-08-12 02:14:14 -07:00
|
|
|
LIBRARY=src/blurhash-decode.wasm
|
|
|
|
$(LIBRARY): blurhash/decode.c
|
2023-08-14 19:24:20 -07:00
|
|
|
emcc -ffast-math -O3 --no-entry -Wl,--export,decodeToArray -Wl,--export,malloc -Wl,--export,free -Wl,--export,isValidBlurhash -o $@ blurhash/decode.c
|
2023-08-12 02:14:14 -07:00
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f $(LIBRARY)
|