wasi: fix clean target in test/wasi/Makefile

PR-URL: https://github.com/nodejs/node/pull/59576
Refs: https://www.gnu.org/software/make/manual/make.html#Cleanup
Refs: https://www.gnu.org/software/make/manual/make.html#Parallel-Disable
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Antoine du Hamel 2025-08-30 21:06:03 +02:00 committed by GitHub
parent eefe3b14bf
commit f36de72811
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c
wasm/%.wasm : c/%.c wasm/%.wasm : c/%.c
$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@ $(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@
.PHONY clean: .PHONY: clean
.NOTPARALLEL: clean
clean:
rm -f $(OBJ) rm -f $(OBJ)