Skip to content

Commit f334e2d

Browse files
aduh95richardlau
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 b95cfdf commit f334e2d

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
@@ -9,5 +9,7 @@ all: $(OBJ)
99
wasm/%.wasm : c/%.c
1010
$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@
1111

12-
.PHONY clean:
12+
.PHONY: clean
13+
.NOTPARALLEL: clean
14+
clean:
1315
rm -f $(OBJ)

0 commit comments

Comments
 (0)