diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-19 15:34:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-19 15:34:04 +0000 |
commit | 2edbd6dac2bb2abcd4bc2c6669162b31938fd4fd (patch) | |
tree | b85f226e29506818c18fa11cba0256c4af53a86e /pod/Makefile.SH | |
parent | 172ea7c87e87614bc0ae85422590b4c9d7c3960c (diff) | |
download | perl-2edbd6dac2bb2abcd4bc2c6669162b31938fd4fd.tar.gz |
Introduce a 'veryclean' target that is like 'distclean'
but also removes *~ and *.orig.
p4raw-id: //depot/perl@6714
Diffstat (limited to 'pod/Makefile.SH')
-rw-r--r-- | pod/Makefile.SH | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pod/Makefile.SH b/pod/Makefile.SH index 45f18567fb..1471bb781e 100644 --- a/pod/Makefile.SH +++ b/pod/Makefile.SH @@ -122,6 +122,9 @@ realclean: clean distclean: realclean +veryclean: distclean + -rm -f *~ *.orig + check: checkpods @echo "checking..."; \ $(PERL) -I../lib checkpods $(POD) |