aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2002-01-21 04:03:52 +0000
committerFrederic Lepied <flepied@mandriva.com>2002-01-21 04:03:52 +0000
commitec734068028cda447b1ed9bc915ddadb6db5972f (patch)
tree5719305d6c8c33f5ff04877068c8368770855ebe /Makefile
parenta66ef0709a21b86d11bb18ffa0dce89e4a10b0a9 (diff)
downloadmsec-ec734068028cda447b1ed9bc915ddadb6db5972f.tar
msec-ec734068028cda447b1ed9bc915ddadb6db5972f.tar.gz
msec-ec734068028cda447b1ed9bc915ddadb6db5972f.tar.bz2
msec-ec734068028cda447b1ed9bc915ddadb6db5972f.tar.xz
msec-ec734068028cda447b1ed9bc915ddadb6db5972f.zip
corrected clean rule
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)