mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
b3bf07e019
PR-URL: https://github.com/nodejs/node/pull/43697 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
14 lines
320 B
Makefile
14 lines
320 B
Makefile
CC = /opt/wasi-sdk/bin/clang
|
|
TARGET = wasm32-wasi
|
|
SYSROOT =
|
|
CFLAGS = -D_WASI_EMULATED_PROCESS_CLOCKS -lwasi-emulated-process-clocks
|
|
|
|
OBJ = $(patsubst c/%.c, wasm/%.wasm, $(wildcard c/*.c))
|
|
all: $(OBJ)
|
|
|
|
wasm/%.wasm : c/%.c
|
|
$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@
|
|
|
|
.PHONY clean:
|
|
rm -f $(OBJ)
|