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 /x2p | |
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 'x2p')
-rwxr-xr-x | x2p/Makefile.SH | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/x2p/Makefile.SH b/x2p/Makefile.SH index ce5c46c521..be09401fbe 100755 --- a/x2p/Makefile.SH +++ b/x2p/Makefile.SH @@ -138,6 +138,9 @@ realclean: clean rm -f core $(addedbyconf) all malloc.c rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old +veryclean: realclean + rm -f *~ *.orig + # The following lint has practically everything turned on. Unfortunately, # you have to wade through a lot of mumbo jumbo that can't be suppressed. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message |