# Makefile for building argon2.wasm

# Note: Building this on Windows will require Bash (e.g. Git Bash), as some commands on PS/CMD are not the same as Bash.

# If you run out of memory (ARGON2_MEMORY_ALLOCATION_ERROR) and it's not being caused by a memory leak, try increasing this.
TOTAL_MEMORY=48MB

.PHONY: build clean

CC=emcc
WASM2JS=wasm2js
ARGON2_DIR=phc-winner-argon2

SRC_FILES = \
	"${ARGON2_DIR}/src/argon2.c" \
	"${ARGON2_DIR}/src/core.c" \
	"${ARGON2_DIR}/src/ref.c" \
	"${ARGON2_DIR}/src/blake2/blake2b.c"

clean:
	rm -f "${WASM}"

build: $(WASM)

$(WASM):
	${CC} \
    	$(SRC_FILES) \
    	-I "${ARGON2_DIR}/include" \
    	-DARGON2_NO_THREADS \
    	-flto \
    	-O3 \
    	--no-entry \
    	-s TOTAL_MEMORY=${TOTAL_MEMORY} \
    	-s EXPORTED_FUNCTIONS="['_argon2id_hash_raw', '_malloc', '_free']" \
    	-o "${WASM}"