diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1999-05-28 08:13:00 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-05-28 16:50:54 +0000 |
commit | d6a255e6be67358d1e8a71b939edbfc895ee4fa6 (patch) | |
tree | 9ca6b9b4ba46c2b2a496cda3e0b83c68e1fc98d6 /Makefile.SH | |
parent | 4435c47799d17bebb53fa0fbe063f550be95a17c (diff) | |
download | perl-d6a255e6be67358d1e8a71b939edbfc895ee4fa6.tar.gz |
Cosmetic OS/2-related patches
To: perl5-porters@perl.org (Mailing list Perl5)
Message-Id: <199905281613.MAA02048@monk.mps.ohio-state.edu>
p4raw-id: //depot/cfgperl@3497
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Makefile.SH b/Makefile.SH index aa0e3f278e..a740419572 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -605,7 +605,9 @@ depend: makedepend makedepend: makedepend.SH config.sh sh ./makedepend.SH -test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) +# Cannot delegate rebuilding of t/perl to make to allow interlaced +# test and minitest +test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL) cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) # Second branch is for testing without a tty or controling terminal. @@ -672,11 +674,18 @@ elc: emacs/cperl-mode.elc emacs/cperl-mode.elc: emacs/cperl-mode.el -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el -etags: emacs/cperl-mode.elc +etags: TAGS + +TAGS: emacs/cperl-mode.elc sh emacs/ptags - perl emacs/e2ctags.pl TAGS > tags -ctags: etags +ctags: tags + +# Let's hope make will not go into an infinite loop on case-unsensitive systems +# This may also fail if . is in the head of the path, since perl will +# require -Ilib +tags: TAGS + perl emacs/e2ctags.pl TAGS > tags # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE # If this runs make out of memory, delete /usr/include lines. |