diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-21 02:29:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-21 02:29:09 +0000 |
commit | b37ebb13f6aaa3a1b8a20b4a97e08bf9427d7e2f (patch) | |
tree | e21e0d713b5de030d94a2bd3bbfd766d5129b59c /Makefile.SH | |
parent | da7cc32f437595100ad6f9c0da2eda282ddbb184 (diff) | |
download | perl-b37ebb13f6aaa3a1b8a20b4a97e08bf9427d7e2f.tar.gz |
The correct cleaning order is an art.
p4raw-id: //depot/perl@6733
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index e81172ead4..aa5a84aaf5 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -679,14 +679,16 @@ clean: _tidy _mopup realclean: _realcleaner _mopup @echo "Note that make realclean does not delete config.sh or Policy.sh" -clobber: _realcleaner _mopup +_clobber: rm -f config.sh cppstdin Policy.sh - -@rm -f Obsolete Wanted + +clobber: _realcleaner _mopup _clobber distclean: clobber # Like distclean but also removes emacs backups and *.orig. -veryclean: _verycleaner _mopup clobber +veryclean: _verycleaner _mopup _clobber + -@rm -f Obsolete Wanted # Do not 'make _mopup' directly. _mopup: |