aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d306f5b1..7e754b9b 100644
--- a/Makefile
+++ b/Makefile
@@ -188,5 +188,10 @@ check: all
$(Q)cd validation && ./test-suite
clean-check:
- find validation/ -name "*.c.[egd]*" -exec rm {} \;
-
+ find validation/ \( -name "*.c.output.expected" \
+ -o -name "*.c.output.got" \
+ -o -name "*.c.output.diff" \
+ -o -name "*.c.error.expected" \
+ -o -name "*.c.error.got" \
+ -o -name "*.c.error.diff" \
+ \) -exec rm {} \;