diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-04-13 23:12:52 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-04-13 23:12:52 +0000 |
commit | e3f83878ddd470fcb4a25f46c6f22c4614903a33 (patch) | |
tree | af678f3482a1302ed9baa06959b3e9e436be08ca /Makefile.SH | |
parent | 13476c87fb117309d347e09ccf14082fe7da6a72 (diff) | |
download | perl-e3f83878ddd470fcb4a25f46c6f22c4614903a33.tar.gz |
LDLIBPTH also on 'clean' targets.
p4raw-id: //depot/cfgperl@3259
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.SH b/Makefile.SH index 4ea0ca013e..0761c7a068 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -531,22 +531,22 @@ _mopup: # Do not 'make _tidy' directly. _tidy: - -cd pod; $(MAKE) clean - -cd utils; $(MAKE) clean - -cd x2p; $(MAKE) clean + -cd pod; $(LDLIBPTH) $(MAKE) clean + -cd utils; $(LDLIBPTH) $(MAKE) clean + -cd x2p; $(LDLIBPTH) $(MAKE) clean -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ - sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ + $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ done rm -f testcompile compilelog # Do not 'make _cleaner' directly. _cleaner: -cd os2; rm -f Makefile - -cd pod; $(MAKE) realclean - -cd utils; $(MAKE) realclean - -cd x2p; $(MAKE) realclean + -cd pod; $(LDLIBPTH) $(MAKE) realclean + -cd utils; $(LDLIBPTH) $(MAKE) realclean + -cd x2p; $(LDLIBPTH) $(MAKE) realclean -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ - sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \ + $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \ done rm -f *.orig */*.orig *~ */*~ core core.perl.*.? core.miniperl.*.? perl.core miniperl.core t/core t/core.perl.*.? t/perl.core t/tmp???? t/c t/perl so_locations t/nonexistent1 rm -rf $(addedbyconf) |