Skip to content

Commit c161635

Browse files
aduh95targos
authored andcommitted
wasi: fix clean target in test/wasi/Makefile
PR-URL: #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 <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 5e025c7 commit c161635

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/wasi/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c
1212
wasm/%.wasm : c/%.c
1313
$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@
1414

15-
.PHONY clean:
15+
.PHONY: clean
16+
.NOTPARALLEL: clean
17+
clean:
1618
rm -f $(OBJ)

0 commit comments

Comments
 (0)