From 36b99c2808737ecd0fc7b5fc61663b6afa2e607a Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Wed, 13 Feb 2019 13:51:47 +0100 Subject: [PATCH] makefile: also cleanup .orig files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2b7d3333..c784f146 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ GRUNT=./node_binaries/grunt clean: make test-clean - find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';' + find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' test: make test-clean