# HG changeset patch # User Marcin Kuzminski # Date 2019-02-13 12:51:47 # Node ID 6f67137b02d702be8670b302696da24119f0b4bb # Parent 3b4cd0597224e02d2a433450e484a46fc727a786 makefile: also cleanup .orig files diff --git a/Makefile b/Makefile --- 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