aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-11-05 22:32:25 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-11-10 10:21:54 +0100
commit081679882c3f8bd06a26bb1f4d8b37b8b3ae06fe (patch)
tree27d67a7bbcd9b39a470434827fb933580328b9da /Makefile
parenteae1d3b88df784f241b3a41fb6a03fc2a9a3ec62 (diff)
downloadsparse-dev-081679882c3f8bd06a26bb1f4d8b37b8b3ae06fe.tar.gz
build: add *.o to clean-check pattern
.o files are also created in the validation directory (currently only tmp.o, for sparse-llvm/sparsec testing). Aso remove them during make clean-check. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d0e616ba..e57934c9 100644
--- a/Makefile
+++ b/Makefile
@@ -216,6 +216,7 @@ clean-check:
@echo " CLEAN"
@find validation/ \( -name "*.c.output.*" \
-o -name "*.c.error.*" \
+ -o -name "*.o" \
\) -exec rm {} \;