diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-18 14:13:30 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-18 14:13:30 +0000 |
commit | 81c61bd5995819c1cff6a438f28f35ffeb9642eb (patch) | |
tree | 5934486256a65088b5238bdb06404fe523e80da0 /Makefile.SH | |
parent | b3c649451aa23903a1f1aa5b0d54e8244611b239 (diff) | |
download | perl-81c61bd5995819c1cff6a438f28f35ffeb9642eb.tar.gz |
A target for sperl.i
p4raw-id: //depot/perl@32999
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile.SH b/Makefile.SH index 28f8436622..b016de8747 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -456,6 +456,15 @@ splintfiles = $(c1) .c.s: $(CCCMDSRC) -S $*.c +sperl$(OBJ_EXT): perl.c $(h) + $(RMS) sperl.c + $(LNS) perl.c sperl.c + $(CCCMD) -DIAMSUID sperl.c + $(RMS) sperl.c + +sperl.i: perl.c $(h) + $(CCCMDSRC) -DIAMSUID -E perl.c > sperl.i + all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make @echo " "; @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." @@ -858,12 +867,6 @@ esac $spitshell >>Makefile <<'!NO!SUBS!' -sperl$(OBJ_EXT): perl.c $(h) - $(RMS) sperl.c - $(LNS) perl.c sperl.c - $(CCCMD) -DIAMSUID sperl.c - $(RMS) sperl.c - # We have to call our ./makedir because Ultrix 4.3 make can't handle the line # test -d lib/auto || mkdir lib/auto # We need to autosplit in two steps because VOS can't handle so many args |