From c158fd7a9ffb99c1384485a9f4ce1ff7ac3f4a8e Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 22 Aug 2025 10:22:43 +0200 Subject: [PATCH] wasi: fix `clean` target in `test/wasi/Makefile` --- test/wasi/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/wasi/Makefile b/test/wasi/Makefile index 1cd041338d9b8e..c4dd73408aa3dc 100644 --- a/test/wasi/Makefile +++ b/test/wasi/Makefile @@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c wasm/%.wasm : c/%.c $(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@ -.PHONY clean: +.PHONY: clean +.NOTPARALLEL: clean +clean: rm -f $(OBJ)