aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd1fe5d..7e4392c 100644
--- a/Makefile
+++ b/Makefile
@@ -6,9 +6,10 @@ TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
all: promisc_check msec_find python
clean:
- -find . -name '*.o' -o -name '*.pyc' -o -name '*~' -exec rm -f {} \;
+ -find . -name '*.o' -o -name '*.py[oc]' -o -name '*~' | xargs rm -f
rm -f src/promisc_check/promisc_check
rm -f src/msec_find/msec_find
+ rm -f *.bz2
promisc_check:
(cd src/promisc_check && make)