diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-04-23 11:06:00 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-23 23:07:02 +0000 |
commit | 75550b4e442842ecb6730cd1ec1d17d1900bcbeb (patch) | |
tree | 3d8b8a8d8c40d0a5a31c714d38efb1325d9ad56c /Makefile.SH | |
parent | 0def6b625443dbfd4aa709e2094ae2a662050941 (diff) | |
download | perl-75550b4e442842ecb6730cd1ec1d17d1900bcbeb.tar.gz |
Nuke obsolete way to build debugging (etc) perls
Message-Id: <200204231906.PAA26393@mailhub1.stratus.com>
p4raw-id: //depot/perl@16117
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Makefile.SH b/Makefile.SH index 8cf8bd8582..2759114ddb 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -261,9 +261,9 @@ esac ## In the following dollars and backticks do not need the extra backslash. $spitshell >>Makefile <<'!NO!SUBS!' -CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $@` +CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@` -CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $<` +CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<` private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm @@ -309,16 +309,6 @@ obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) -# Once perl has been Configure'd and built ok you build different -# perl variants (Debugging, Embedded, Multiplicity etc) by saying: -# make clean; make LIBPERL=libperl<type>.a -# where <type> is some combination of 'd' and(or) 'e' or 'm'. -# See cflags to understand how this works. -# -# This mechanism is getting clunky and might not even work any more. -# EMBEDDING is on by default, and MULTIPLICITY doesn't work. -# - lintflags = -hbvxac .c$(OBJ_EXT): |