Change 32999 by [EMAIL PROTECTED] on 2008/01/18 14:13:30
A target for sperl.i
Affected files ...
... //depot/perl/Makefile.SH#400 edit
Differences ...
==== //depot/perl/Makefile.SH#400 (text) ====
Index: perl/Makefile.SH
--- perl/Makefile.SH#399~32953~ 2008-01-11 05:36:54.000000000 -0800
+++ perl/Makefile.SH 2008-01-18 06:13:30.000000000 -0800
@@ -456,6 +456,15 @@
.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 @@
$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
End of Patch.