Skip to content

Commit 784f2ed

Browse files
author
martin
committed
Add make clean to clear the regression test results.
1 parent 3b0266d commit 784f2ed

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

regression/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,10 @@ DIRS = ansi-c \
1212

1313
test:
1414
$(foreach var,$(DIRS), $(MAKE) -C $(var) test || exit 1;)
15+
16+
clean:
17+
@for dir in *; do \
18+
if [ -d "$$dir" ]; then \
19+
$(MAKE) -C "$$dir" clean; \
20+
fi; \
21+
done;

0 commit comments

Comments
 (0)