From 2e81db6b7c7cf71d90b51be6212468bc77e700f8 Mon Sep 17 00:00:00 2001 From: Samuel Abels Date: Wed, 15 Mar 2017 15:35:58 +0100 Subject: [PATCH] minor makefile fix for 'make clean' --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7790f4f7..8716ca7f 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ DISTDIR=/pub/code/releases/spiff_workflow ################################################################### .PHONY : clean clean: - find . -name "*.pyc" -o -name "*.pyo" | xargs -n1 rm -f - find . -name "*.egg-info" | xargs -n1 rm -r + find . -name "*.pyc" -o -name "*.pyo" | xargs -rn1 rm -f + find . -name "*.egg-info" | xargs -rn1 rm -r rm -Rf build cd doc; make clean