Commit | Line | Data |
599a829f |
1 | #! /bin/sh |
2000072c |
2 | case $CONFIGDOTSH in |
2304df62 |
3 | '') |
4 | if test -f config.sh; then TOP=.; |
5 | elif test -f ../config.sh; then TOP=..; |
6 | elif test -f ../../config.sh; then TOP=../..; |
7 | elif test -f ../../../config.sh; then TOP=../../..; |
8 | elif test -f ../../../../config.sh; then TOP=../../../..; |
9 | else |
10 | echo "Can't find config.sh."; exit 1 |
11 | fi |
12 | . $TOP/config.sh |
13 | ;; |
14 | esac |
15 | : This forces SH files to create target in same directory as SH file. |
16 | : This is so that make depend always knows where to find SH derivatives. |
17 | case "$0" in |
18 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; |
19 | esac |
20 | |
2304df62 |
21 | case "$d_dosuid" in |
22 | *define*) suidperl='suidperl' ;; |
23 | *) suidperl='';; |
24 | esac |
25 | |
d5d19f97 |
26 | linklibperl='$(LIBPERL)' |
3c321fdc |
27 | shrpldflags='$(LDDLFLAGS)' |
6ee623d5 |
28 | ldlibpth='' |
d96ebe2e |
29 | case "$useshrplib" in |
30 | true) |
6ee623d5 |
31 | # Prefix all runs of 'miniperl' and 'perl' with |
5cf1d1f1 |
32 | # $ldlibpth so that ./perl finds *this* shared libperl. |
6ee623d5 |
33 | ldlibpth="LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH" |
34 | |
d5d19f97 |
35 | pldlflags="$cccdlflags" |
d96ebe2e |
36 | case "${osname}${osvers}" in |
37 | next4*) |
3c321fdc |
38 | ld=libtool |
39 | lddlflags="-dynamic -undefined warning -framework System \ |
40 | -compatibility_version 1 -current_version $patchlevel \ |
41 | -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@" |
6ee623d5 |
42 | ;; |
5cf1d1f1 |
43 | cygwin*) |
8736538c |
44 | linklibperl="-lperl" |
45 | ;; |
73d40b3e |
46 | sunos*) |
d5d19f97 |
47 | linklibperl="-lperl" |
48 | ;; |
43039de7 |
49 | netbsd*|freebsd[234]*|openbsd*) |
099685bc |
50 | linklibperl="-L. -lperl" |
51 | ;; |
3c321fdc |
52 | aix*) |
53 | shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp" |
1553ab04 |
54 | case "$osvers" in |
549a6b10 |
55 | 3*) shrpldflags="$shrpldflags -e _nostart" |
1553ab04 |
56 | ;; |
549a6b10 |
57 | *) shrpldflags="$shrpldflags -b noentry" |
1553ab04 |
58 | ;; |
59 | esac |
549a6b10 |
60 | shrpldflags="$shrpldflags $ldflags $libs $cryptlib" |
61 | linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl" |
3c321fdc |
62 | ;; |
1c7d1a19 |
63 | hpux*) |
64 | linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl" |
46193409 |
65 | ;; |
655635e8 |
66 | esac |
5cf1d1f1 |
67 | case "$ldlibpthname" in |
68 | '') ;; |
69 | *) |
70 | case "$osname" in |
71 | os2) |
72 | ldlibpth='' |
73 | ;; |
74 | rhapsody) |
75 | eval "ldlibpth=\"$ldlibpthname=`pwd`/Perl:\$$ldlibpthname\"" |
76 | ;; |
77 | *) |
78 | eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\"" |
79 | ;; |
80 | esac |
81 | ;; |
82 | esac |
d5d19f97 |
83 | ;; |
f0efd8cf |
84 | *) pldlflags='' |
d96ebe2e |
85 | ;; |
ecfc5424 |
86 | esac |
87 | |
a0d0e21e |
88 | : Prepare dependency lists for Makefile. |
89 | dynamic_list=' ' |
90 | for f in $dynamic_ext; do |
91 | : the dependency named here will never exist |
ecfc5424 |
92 | base=`echo "$f" | sed 's/.*\///'` |
75f92628 |
93 | dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext" |
a0d0e21e |
94 | done |
95 | |
96 | static_list=' ' |
a0d0e21e |
97 | for f in $static_ext; do |
98 | base=`echo "$f" | sed 's/.*\///'` |
cd4d8a96 |
99 | static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)" |
a0d0e21e |
100 | done |
101 | |
4318d5a0 |
102 | nonxs_list=' ' |
103 | for f in $nonxs_ext; do |
104 | base=`echo "$f" | sed 's/.*\///'` |
105 | nonxs_list="$nonxs_list ext/$f/pm_to_blib" |
106 | done |
107 | |
2304df62 |
108 | echo "Extracting Makefile (with variable substitutions)" |
655635e8 |
109 | $spitshell >Makefile <<!GROK!THIS! |
a0d0e21e |
110 | # Makefile.SH |
85e6fe83 |
111 | # This file is derived from Makefile.SH. Any changes made here will |
112 | # be lost the next time you run Configure. |
655635e8 |
113 | # Makefile is used to generate $firstmakefile. The only difference |
114 | # is that $firstmakefile has the dependencies filled in at the end. |
2304df62 |
115 | # |
fed7345c |
116 | # |
2304df62 |
117 | # I now supply perly.c with the kits, so don't remake perly.c without byacc |
118 | BYACC = $byacc |
119 | CC = $cc |
232e078e |
120 | LD = $ld |
16d20bd9 |
121 | |
2304df62 |
122 | LDFLAGS = $ldflags |
123 | CLDFLAGS = $ldflags |
85e6fe83 |
124 | |
2304df62 |
125 | SMALL = $small |
126 | LARGE = $large $split |
127 | mallocsrc = $mallocsrc |
128 | mallocobj = $mallocobj |
85e6fe83 |
129 | LNS = $lns |
2304df62 |
130 | RMS = rm -f |
85e6fe83 |
131 | ranlib = $ranlib |
132 | |
16d20bd9 |
133 | # The following are mentioned only to make metaconfig include the |
134 | # appropriate questions in Configure. If you want to change these, |
8e07c86e |
135 | # edit config.sh instead, or specify --man1dir=/wherever on |
16d20bd9 |
136 | # installman commandline. |
137 | bin = $installbin |
138 | scriptdir = $scriptdir |
d96ebe2e |
139 | shrpdir = $archlibexp/CORE |
16d20bd9 |
140 | privlib = $installprivlib |
141 | man1dir = $man1dir |
142 | man1ext = $man1ext |
143 | man3dir = $man3dir |
144 | man3ext = $man3ext |
145 | |
85e6fe83 |
146 | # The following are used to build and install shared libraries for |
147 | # dynamic loading. |
148 | LDDLFLAGS = $lddlflags |
3c321fdc |
149 | SHRPLDFLAGS = $shrpldflags |
85e6fe83 |
150 | CCDLFLAGS = $ccdlflags |
a0d0e21e |
151 | DLSUFFIX = .$dlext |
ecfc5424 |
152 | PLDLFLAGS = $pldlflags |
d96ebe2e |
153 | LIBPERL = $libperl |
d5d19f97 |
154 | LLIBPERL= $linklibperl |
ecfc5424 |
155 | SHRPENV = $shrpenv |
a0d0e21e |
156 | |
6ee623d5 |
157 | # The following is used to include the current directory in |
5cf1d1f1 |
158 | # the dynamic loader path you are building a shared libperl. |
6ee623d5 |
159 | LDLIBPTH = $ldlibpth |
160 | |
a0d0e21e |
161 | dynamic_ext = $dynamic_list |
162 | static_ext = $static_list |
4318d5a0 |
163 | nonxs_ext = $nonxs_list |
164 | ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext) |
cd4d8a96 |
165 | DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) |
2304df62 |
166 | |
167 | libs = $libs $cryptlib |
168 | |
909b3858 |
169 | public = perl $suidperl utilities translators |
2304df62 |
170 | |
171 | shellflags = $shellflags |
172 | |
d96ebe2e |
173 | # This is set to MAKE=$make if your $make command doesn't |
174 | # do it for you. |
175 | $make_set_make |
4633a7c4 |
176 | |
dfe9444c |
177 | # These variables may need to be manually set for non-Unix systems. |
ccc7f9b3 |
178 | AR = $full_ar |
dfe9444c |
179 | EXE_EXT = $_exe |
180 | LIB_EXT = $_a |
181 | OBJ_EXT = $_o |
182 | PATH_SEP = $p_ |
4633a7c4 |
183 | |
184 | FIRSTMAKEFILE = $firstmakefile |
185 | |
186 | # Any special object files needed by this architecture, e.g. os2/os2.obj |
187 | ARCHOBJS = $archobjs |
188 | |
cd4d8a96 |
189 | .SUFFIXES: .c \$(OBJ_EXT) |
190 | |
d96ebe2e |
191 | # grrr |
192 | SHELL = $sh |
655635e8 |
193 | |
28e8609d |
194 | # how to tr(anslate) newlines |
195 | TRNL = '$trnl' |
196 | |
2304df62 |
197 | !GROK!THIS! |
198 | |
85e6fe83 |
199 | ## In the following dollars and backticks do not need the extra backslash. |
2304df62 |
200 | $spitshell >>Makefile <<'!NO!SUBS!' |
201 | |
d96ebe2e |
202 | CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@` |
2304df62 |
203 | |
fed7345c |
204 | private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm |
2304df62 |
205 | |
4633a7c4 |
206 | # Files to be built with variable substitution before miniperl |
207 | # is available. |
208 | sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \ |
549a6b10 |
209 | makedir.SH myconfig.SH writemain.SH |
4633a7c4 |
210 | |
211 | shextract = Makefile cflags config.h makeaperl makedepend \ |
549a6b10 |
212 | makedir myconfig writemain |
4633a7c4 |
213 | |
214 | # Files to be built with variable substitution after miniperl is |
215 | # available. Dependencies handled manually below (for now). |
2304df62 |
216 | |
efb12ca0 |
217 | pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \ |
218 | pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL |
4633a7c4 |
219 | |
efb12ca0 |
220 | plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \ |
221 | pod/pod2usage pod/podchecker pod/podselect |
4633a7c4 |
222 | |
223 | addedbyconf = UU $(shextract) $(plextract) pstruct |
2304df62 |
224 | |
fed7345c |
225 | h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h |
a0d0e21e |
226 | h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h |
2304df62 |
227 | h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h |
219f41b1 |
228 | h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h |
4438c4b7 |
229 | h5 = utf8.h warnings.h |
33b839e2 |
230 | h = $(h1) $(h2) $(h3) $(h4) $(h5) |
2304df62 |
231 | |
e8edd1e6 |
232 | c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c |
a0ed51b3 |
233 | c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c |
09bef843 |
234 | c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c |
235 | c4 = globals.c perlio.c |
2304df62 |
236 | |
09bef843 |
237 | c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c |
2304df62 |
238 | |
e8edd1e6 |
239 | obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) |
cd4d8a96 |
240 | obj2 = hv$(OBJ_EXT) av$(OBJ_EXT) run$(OBJ_EXT) pp_hot$(OBJ_EXT) sv$(OBJ_EXT) pp$(OBJ_EXT) scope$(OBJ_EXT) pp_ctl$(OBJ_EXT) pp_sys$(OBJ_EXT) |
09bef843 |
241 | obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) |
655635e8 |
242 | |
4633a7c4 |
243 | obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
2304df62 |
244 | |
a0d0e21e |
245 | # Once perl has been Configure'd and built ok you build different |
246 | # perl variants (Debugging, Embedded, Multiplicity etc) by saying: |
d96ebe2e |
247 | # make clean; make LIBPERL=libperl<type>.a |
a0d0e21e |
248 | # where <type> is some combination of 'd' and(or) 'e' or 'm'. |
249 | # See cflags to understand how this works. |
250 | # |
d96ebe2e |
251 | # This mechanism is getting clunky and might not even work any more. |
252 | # EMBEDDING is on by default, and MULTIPLICITY doesn't work. |
253 | # |
a0d0e21e |
254 | |
2304df62 |
255 | lintflags = -hbvxac |
256 | |
cd4d8a96 |
257 | .c$(OBJ_EXT): |
d96ebe2e |
258 | $(CCCMD) $(PLDLFLAGS) $*.c |
2304df62 |
259 | |
8374d37a |
260 | all: $(FIRSTMAKEFILE) miniperl $(private) $(public) $(dynamic_ext) $(nonxs_ext) |
248e23d9 |
261 | @echo " "; |
262 | @echo " Everything is up to date. 'make test' to run test suite." |
909b3858 |
263 | |
6ee623d5 |
264 | compile: all |
265 | echo "testing compilation" > testcompile; |
266 | cd utils; $(MAKE) compile; |
267 | cd x2p; $(MAKE) compile; |
268 | cd pod; $(MAKE) compile; |
269 | |
909b3858 |
270 | translators: miniperl lib/Config.pm FORCE |
6ee623d5 |
271 | @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all |
8e07c86e |
272 | |
8374d37a |
273 | utilities: miniperl lib/Config.pm $(plextract) FORCE |
6ee623d5 |
274 | @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all |
909b3858 |
275 | |
276 | |
16d20bd9 |
277 | # This is now done by installman only if you actually want the man pages. |
278 | # @echo " "; echo " Making docs"; cd pod; $(MAKE) all; |
85e6fe83 |
279 | |
280 | # Phony target to force checking subdirectories. |
e50aee73 |
281 | # Apparently some makes require an action for the FORCE target. |
85e6fe83 |
282 | FORCE: |
4633a7c4 |
283 | @sh -c true |
85e6fe83 |
284 | |
92c28edd |
285 | miniperlmain$(OBJ_EXT): miniperlmain.c |
286 | $(CCCMD) $(PLDLFLAGS) $*.c |
ecfc5424 |
287 | |
92c28edd |
288 | perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE) |
e8827f64 |
289 | sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp |
92c28edd |
290 | sh mv-if-diff writemain.tmp perlmain.c |
85e6fe83 |
291 | |
cd4d8a96 |
292 | perlmain$(OBJ_EXT): perlmain.c |
92c28edd |
293 | $(CCCMD) $(PLDLFLAGS) $*.c |
85e6fe83 |
294 | |
a0d0e21e |
295 | # The file ext.libs is a list of libraries that must be linked in |
296 | # for static extensions, e.g. -lm -lgdbm, etc. The individual |
297 | # static extension Makefile's add to it. |
fed7345c |
298 | ext.libs: $(static_ext) |
a0d0e21e |
299 | -@test -f ext.libs || touch ext.libs |
85e6fe83 |
300 | |
ecfc5424 |
301 | !NO!SUBS! |
599a829f |
302 | |
d96ebe2e |
303 | # How to build libperl. This is still rather convoluted. |
599a829f |
304 | # Load up custom Makefile.SH fragment for shared loading and executables: |
8736538c |
305 | case "$osname" in |
306 | cygwin*) |
2c2d71f5 |
307 | Makefile_s="cygwin/Makefile.SHs" |
8736538c |
308 | ;; |
309 | *) |
310 | Makefile_s="$osname/Makefile.SHs" |
311 | ;; |
312 | esac |
313 | |
549a6b10 |
314 | case "$osname" in |
315 | aix) |
316 | $spitshell >>Makefile <<!GROK!THIS! |
317 | LIBS = $libs |
5f9d9a17 |
318 | # In AIX we need to change this for building Perl itself from |
319 | # its earlier definition (which is for building external |
320 | # extensions *after* Perl has been built and installed) |
321 | CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'` |
549a6b10 |
322 | |
323 | !GROK!THIS! |
324 | case "$useshrplib" in |
325 | define|true|[yY]*) |
326 | $spitshell >>Makefile <<'!NO!SUBS!' |
327 | |
328 | LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT) |
329 | MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT) |
330 | |
331 | $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj) |
332 | $(RMS) $(LIBPERL_NONSHR) |
333 | $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj) |
334 | |
335 | $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) |
a7089531 |
336 | $(CCCMD) $(PLDLFLAGS) -DMINIPERL_BUILD -o opmini$(OBJ_EXT) op.c |
337 | $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \ |
338 | opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS) |
549a6b10 |
339 | |
340 | MINIPERLEXP = $(MINIPERL_NONSHR) |
341 | |
342 | LIBPERLEXPORT = perl.exp |
343 | |
344 | !NO!SUBS! |
345 | |
346 | ;; |
347 | *) |
348 | $spitshell >>Makefile <<'!NO!SUBS!' |
349 | MINIPERLEXP = miniperl$(EXE_EXT) |
350 | |
351 | PERLEXPORT = perl.exp |
352 | |
353 | !NO!SUBS! |
354 | ;; |
355 | esac |
356 | $spitshell >>Makefile <<'!NO!SUBS!' |
357 | perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) |
358 | ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp |
359 | sh mv-if-diff perl.exp.tmp perl.exp |
360 | |
361 | !NO!SUBS! |
362 | ;; |
2c2d71f5 |
363 | os2) |
364 | $spitshell >>Makefile <<'!NO!SUBS!' |
365 | MINIPERLEXP = miniperl |
366 | |
367 | perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map |
368 | ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp |
369 | sh mv-if-diff perl.exp.tmp perl5.def |
370 | |
371 | !NO!SUBS! |
372 | ;; |
549a6b10 |
373 | esac |
374 | |
8736538c |
375 | if test -r $Makefile_s ; then |
376 | . $Makefile_s |
d96ebe2e |
377 | $spitshell >>Makefile <<!GROK!THIS! |
cd4d8a96 |
378 | |
8736538c |
379 | Makefile: $Makefile_s |
cd4d8a96 |
380 | !GROK!THIS! |
381 | else |
f0efd8cf |
382 | $spitshell >>Makefile <<'!NO!SUBS!' |
549a6b10 |
383 | $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT) |
9c9e9f08 |
384 | !NO!SUBS! |
d96ebe2e |
385 | case "$useshrplib" in |
386 | true) |
387 | $spitshell >>Makefile <<'!NO!SUBS!' |
3c321fdc |
388 | $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj) |
389 | !NO!SUBS! |
390 | case "$osname" in |
391 | aix) |
392 | $spitshell >>Makefile <<'!NO!SUBS!' |
28e8609d |
393 | rm -f libperl$(OBJ_EXT) |
3c321fdc |
394 | mv $@ libperl$(OBJ_EXT) |
395 | $(AR) qv $(LIBPERL) libperl$(OBJ_EXT) |
ecfc5424 |
396 | !NO!SUBS! |
3c321fdc |
397 | ;; |
398 | esac |
d96ebe2e |
399 | ;; |
400 | *) |
401 | $spitshell >>Makefile <<'!NO!SUBS!' |
402 | rm -f $(LIBPERL) |
403 | $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj) |
404 | @$(ranlib) $(LIBPERL) |
655635e8 |
405 | !NO!SUBS! |
d96ebe2e |
406 | ;; |
407 | esac |
599a829f |
408 | $spitshell >>Makefile <<'!NO!SUBS!' |
409 | |
410 | # How to build executables. |
411 | |
412 | # The $& notation tells Sequent machines that it can do a parallel make, |
413 | # and is harmless otherwise. |
414 | # The miniperl -w -MExporter line is a basic cheap test to catch errors |
415 | # before make goes on to run preplibrary and then MakeMaker on extensions. |
416 | # This is very handy because later errors are often caused by miniperl |
417 | # build problems but that's not obvious to the novice. |
418 | # The Module used here must not depend on Config or any extensions. |
419 | |
420 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) |
a7089531 |
421 | $(CCCMD) $(PLDLFLAGS) -DMINIPERL_BUILD -o opmini$(OBJ_EXT) op.c |
422 | $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \ |
423 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs) |
92c28edd |
424 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest |
599a829f |
425 | |
549a6b10 |
426 | perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
427 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f |
428 | |
549a6b10 |
429 | pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
430 | $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f |
431 | |
549a6b10 |
432 | purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
433 | $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
dbadb36a |
434 | |
549a6b10 |
435 | quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
436 | $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 |
437 | |
438 | # This version, if specified in Configure, does ONLY those scripts which need |
439 | # set-id emulation. Suidperl must be setuid root. It contains the "taint" |
440 | # checks as well as the special code to validate that the script in question |
441 | # has been invoked correctly. |
442 | |
549a6b10 |
443 | suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
444 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 |
445 | |
599a829f |
446 | !NO!SUBS! |
447 | |
448 | fi |
449 | |
450 | $spitshell >>Makefile <<'!NO!SUBS!' |
451 | |
cd4d8a96 |
452 | sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h) |
2304df62 |
453 | $(RMS) sperl.c |
85e6fe83 |
454 | $(LNS) perl.c sperl.c |
d96ebe2e |
455 | $(CCCMD) -DIAMSUID sperl.c |
2304df62 |
456 | $(RMS) sperl.c |
457 | |
fec02dd3 |
458 | # We have to call our ./makedir because Ultrix 4.3 make can't handle the line |
459 | # test -d lib/auto || mkdir lib/auto |
460 | # |
8374d37a |
461 | preplibrary: miniperl lib/Config.pm |
cd4d8a96 |
462 | @sh ./makedir lib/auto |
a0d0e21e |
463 | @echo " AutoSplitting perl library" |
92c28edd |
464 | $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ |
465 | autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm |
2304df62 |
466 | |
75f92628 |
467 | # Take care to avoid modifying lib/Config.pm without reason |
fb73857a |
468 | # (If trying to create a new port and having problems with the configpm script, |
469 | # try 'make minitest' and/or commenting out the tests at the end of configpm.) |
92c28edd |
470 | lib/Config.pm: config.sh miniperl configpm |
e8827f64 |
471 | $(LDLIBPTH) ./miniperl configpm configpm.tmp |
92c28edd |
472 | sh mv-if-diff configpm.tmp $@ |
2304df62 |
473 | |
92c28edd |
474 | lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm |
e8827f64 |
475 | $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp |
92c28edd |
476 | sh mv-if-diff minimod.tmp $@ |
fed7345c |
477 | |
92c28edd |
478 | lib/re.pm: ext/re/re.pm |
ceb0239c |
479 | rm -f $@ |
92c28edd |
480 | cat ext/re/re.pm > $@ |
7cfc0d09 |
481 | |
92c28edd |
482 | $(plextract): miniperl lib/Config.pm lib/re.pm |
483 | $(LDLIBPTH) ./miniperl -Ilib $@.PL |
484 | |
16d20bd9 |
485 | install: all install.perl install.man |
486 | |
cd4d8a96 |
487 | install.perl: all installperl |
6ee623d5 |
488 | if [ -n "$(COMPILE)" ]; \ |
489 | then \ |
490 | cd utils; $(MAKE) compile; \ |
491 | cd ../x2p; $(MAKE) compile; \ |
492 | cd ../pod; $(MAKE) compile; \ |
83673e1f |
493 | else :; \ |
6ee623d5 |
494 | fi |
495 | $(LDLIBPTH) ./perl installperl |
a0d0e21e |
496 | |
cd4d8a96 |
497 | install.man: all installman |
6ee623d5 |
498 | $(LDLIBPTH) ./perl installman |
16d20bd9 |
499 | |
84902520 |
500 | # XXX Experimental. Hardwired values, but useful for testing. |
501 | # Eventually Configure could ask for some of these values. |
502 | install.html: all installhtml |
6ee623d5 |
503 | $(LDLIBPTH) ./perl installhtml \ |
84902520 |
504 | --podroot=. --podpath=. --recurse \ |
505 | --htmldir=$(privlib)/html \ |
506 | --htmlroot=$(privlib)/html \ |
507 | --splithead=pod/perlipc \ |
508 | --splititem=pod/perlfunc \ |
509 | --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \ |
510 | --verbose |
511 | |
16d20bd9 |
512 | |
a0d0e21e |
513 | # I now supply perly.c with the kits, so the following section is |
56febc5e |
514 | # used only if you force byacc to run by saying |
515 | # make run_byacc |
516 | # Since we patch up the byacc output, the perly.fixer script needs |
517 | # to run with precisely the same version of byacc as I use. You |
518 | # normally shouldn't remake perly.[ch]. |
519 | |
232e078e |
520 | run_byacc: FORCE |
56febc5e |
521 | $(BYACC) -d perly.y |
fb73857a |
522 | chmod 664 perly.c |
56febc5e |
523 | sh $(shellflags) ./perly.fixer y.tab.c perly.c |
55497cff |
524 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
525 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
ebb99254 |
526 | sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h |
55497cff |
527 | cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h |
fb73857a |
528 | chmod 664 vms/perly_c.vms vms/perly_h.vms |
529 | perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms |
56febc5e |
530 | |
531 | # We don't want to regenerate perly.c and perly.h, but they might |
532 | # appear out-of-date after a patch is applied or a new distribution is |
533 | # made. |
92c28edd |
534 | perly.c: perly.y |
b233458b |
535 | -@sh -c true |
536 | |
92c28edd |
537 | perly.h: perly.y |
b233458b |
538 | -@sh -c true |
539 | |
bd656b61 |
540 | # No compat3.sym here since and including the 5.004_50. |
e4d5a464 |
541 | # No interp.sym since 5.005_03. |
22c35a8c |
542 | SYM = global.sym globvar.sym perlio.sym pp.sym |
419eaf7b |
543 | |
22c35a8c |
544 | SYMH = perlvars.h intrpvar.h thrdvar.h |
419eaf7b |
545 | |
dae78bb1 |
546 | CHMOD_W = chmod +w |
547 | |
a8581515 |
548 | # The following files are generated automatically |
e50aee73 |
549 | # keywords.h: keywords.pl |
550 | # opcode.h: opcode.pl |
22c35a8c |
551 | # pp_proto.h: opcode.pl |
552 | # pp.sym: opcode.pl |
553 | # embed.h: embed.pl [* needs pp.sym generated by opcode.pl! *] |
554 | # embedvar.h: embed.pl [* needs pp.sym generated by opcode.pl! *] |
e8edd1e6 |
555 | # ext/ByteLoader/byterun.h: bytecode.pl |
556 | # ext/ByteLoader/byterun.c: bytecode.pl |
557 | # ext/B/Asmdata.pm: bytecode.pl |
cd439c50 |
558 | # global.sym: embed.pl |
d09b2d29 |
559 | # regnodes.h: regcomp.pl |
4438c4b7 |
560 | # warnings.h lib/warnings.pm: warnings.pl |
e50aee73 |
561 | # The correct versions should be already supplied with the perl kit, |
562 | # in case you don't have perl available. |
563 | # To force them to run, type |
564 | # make regen_headers |
565 | regen_headers: FORCE |
dae78bb1 |
566 | $(CHMOD_W) proto.h warning.h lib/warning.pm |
e50aee73 |
567 | perl keywords.pl |
568 | perl opcode.pl |
569 | perl embed.pl |
a8581515 |
570 | perl bytecode.pl |
d09b2d29 |
571 | perl regcomp.pl |
4438c4b7 |
572 | perl warnings.pl |
8e07c86e |
573 | |
a0d0e21e |
574 | # Extensions: |
4318d5a0 |
575 | # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |
576 | # automatically get built. There should ordinarily be no need to change |
577 | # any of this part of makefile. |
a0d0e21e |
578 | # |
579 | # The dummy dependency is a place holder in case $(dynamic_ext) or |
580 | # $(static_ext) is empty. |
581 | # |
582 | # DynaLoader may be needed for extensions that use Makefile.PL. |
583 | |
584 | $(DYNALOADER): miniperl preplibrary FORCE |
92c28edd |
585 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e |
586 | |
587 | d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE |
92c28edd |
588 | @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e |
589 | |
590 | s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE |
92c28edd |
591 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
2304df62 |
592 | |
4318d5a0 |
593 | n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE |
92c28edd |
594 | @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
4318d5a0 |
595 | |
17b893d8 |
596 | clean: _tidy _mopup |
70af249b |
597 | |
598 | realclean: _cleaner _mopup |
4e2a5f63 |
599 | @echo "Note that make realclean does not delete config.sh or Policy.sh" |
70af249b |
600 | |
601 | clobber: _cleaner _mopup |
4e2a5f63 |
602 | rm -f config.sh cppstdin Policy.sh |
70af249b |
603 | |
604 | distclean: clobber |
605 | |
606 | # Do not 'make _mopup' directly. |
607 | _mopup: |
cd4d8a96 |
608 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c |
fed7345c |
609 | rm -f perl.exp ext.libs |
d96ebe2e |
610 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
1cfa4ec7 |
611 | -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap |
70af249b |
612 | rm -f perl suidperl miniperl $(LIBPERL) |
613 | |
614 | # Do not 'make _tidy' directly. |
615 | _tidy: |
e3f83878 |
616 | -cd pod; $(LDLIBPTH) $(MAKE) clean |
617 | -cd utils; $(LDLIBPTH) $(MAKE) clean |
618 | -cd x2p; $(LDLIBPTH) $(MAKE) clean |
4318d5a0 |
619 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
e3f83878 |
620 | $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ |
a0d0e21e |
621 | done |
6ee623d5 |
622 | rm -f testcompile compilelog |
ff68c719 |
623 | |
624 | # Do not 'make _cleaner' directly. |
625 | _cleaner: |
4633a7c4 |
626 | -cd os2; rm -f Makefile |
e3f83878 |
627 | -cd pod; $(LDLIBPTH) $(MAKE) realclean |
628 | -cd utils; $(LDLIBPTH) $(MAKE) realclean |
629 | -cd x2p; $(LDLIBPTH) $(MAKE) realclean |
4318d5a0 |
630 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
e3f83878 |
631 | $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \ |
a0d0e21e |
632 | done |
290be4b1 |
633 | rm -f *.orig */*.orig *~ */*~ core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/tmp* t/c t/perl so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) |
a0d0e21e |
634 | rm -rf $(addedbyconf) |
cd4d8a96 |
635 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old |
fed7345c |
636 | rm -f $(private) |
a0d0e21e |
637 | rm -rf lib/auto |
181ea953 |
638 | rm -f lib/.exists lib/*/.exists |
16d20bd9 |
639 | rm -f h2ph.man pstruct |
a0d0e21e |
640 | rm -rf .config |
6ee623d5 |
641 | rm -f testcompile compilelog |
bb0110d4 |
642 | -rmdir lib/B lib/Data lib/IO/Socket lib/IO |
ecfc5424 |
643 | |
2304df62 |
644 | # The following lint has practically everything turned on. Unfortunately, |
645 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. |
646 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message |
647 | # for that spot. |
648 | |
649 | lint: perly.c $(c) |
650 | lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz |
651 | |
fb73857a |
652 | # Need to unset during recursion to go out of loop. |
653 | # The README below ensures that the dependency list is never empty and |
654 | # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding. |
cd4d8a96 |
655 | |
84902520 |
656 | MAKEDEPEND = Makefile makedepend |
cd4d8a96 |
657 | |
fb73857a |
658 | $(FIRSTMAKEFILE): README $(MAKEDEPEND) |
cd4d8a96 |
659 | $(MAKE) depend MAKEDEPEND= |
a0d0e21e |
660 | |
599a829f |
661 | config.h: config_h.SH config.sh |
655635e8 |
662 | $(SHELL) config_h.SH |
663 | |
a0d0e21e |
664 | # When done, touch perlmain.c so that it doesn't get remade each time. |
2304df62 |
665 | depend: makedepend |
fb73857a |
666 | sh ./makedepend MAKE=$(MAKE) |
a0d0e21e |
667 | - test -s perlmain.c && touch perlmain.c |
2304df62 |
668 | cd x2p; $(MAKE) depend |
669 | |
cd4d8a96 |
670 | # Cannot postpone this until $firstmakefile is ready ;-) |
92c28edd |
671 | makedepend: makedepend.SH config.sh |
672 | sh ./makedepend.SH |
cd4d8a96 |
673 | |
d6a255e6 |
674 | # Cannot delegate rebuilding of t/perl to make to allow interlaced |
675 | # test and minitest |
676 | test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL) |
3e3baf6d |
677 | cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) |
678 | |
994e9bc0 |
679 | # Second branch is for testing without a tty or controling terminal. |
680 | # See t/op/stat.t |
3e3baf6d |
681 | test check: test-prep |
994e9bc0 |
682 | if (true </dev/tty) >/dev/null 2>&1; then \ |
683 | cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \ |
684 | else \ |
685 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \ |
686 | fi |
3e3baf6d |
687 | |
a0ed51b3 |
688 | utest ucheck: test-prep |
994e9bc0 |
689 | if (true </dev/tty) >/dev/null 2>&1; then \ |
690 | cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \ |
691 | else \ |
692 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \ |
693 | fi |
a0ed51b3 |
694 | |
3e3baf6d |
695 | # For testing without a tty or controling terminal. See t/op/stat.t |
696 | test-notty: test-prep |
6ee623d5 |
697 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST |
2304df62 |
698 | |
d96ebe2e |
699 | # Can't depend on lib/Config.pm because that might be where miniperl |
700 | # is crashing. |
a35c6d74 |
701 | minitest: miniperl lib/re.pm |
d96ebe2e |
702 | @echo "You may see some irrelevant test failures if you have been unable" |
703 | @echo "to build lib/Config.pm." |
cd4d8a96 |
704 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ |
6ee623d5 |
705 | && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty |
16d20bd9 |
706 | |
fb73857a |
707 | # Handy way to run perlbug -ok without having to install and run the |
84902520 |
708 | # installed perlbug. We don't re-run the tests here - we trust the user. |
fb73857a |
709 | # Please *don't* use this unless all tests pass. |
1d2dff63 |
710 | # If you want to report test failures, use "make nok" instead. |
188cd53f |
711 | ok: utilities |
92c28edd |
712 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' |
84902520 |
713 | |
105f9295 |
714 | okfile: utilities |
92c28edd |
715 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok |
105f9295 |
716 | |
1d2dff63 |
717 | nok: utilities |
92c28edd |
718 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' |
1d2dff63 |
719 | |
85e6fe83 |
720 | clist: $(c) |
92c28edd |
721 | echo $(c) | tr ' ' $(TRNL) >.clist |
2304df62 |
722 | |
85e6fe83 |
723 | hlist: $(h) |
92c28edd |
724 | echo $(h) | tr ' ' $(TRNL) >.hlist |
2304df62 |
725 | |
85e6fe83 |
726 | shlist: $(sh) |
92c28edd |
727 | echo $(sh) | tr ' ' $(TRNL) >.shlist |
2304df62 |
728 | |
4633a7c4 |
729 | pllist: $(pl) |
92c28edd |
730 | echo $(pl) | tr ' ' $(TRNL) >.pllist |
4633a7c4 |
731 | |
92c28edd |
732 | Makefile: Makefile.SH ./config.sh |
733 | $(SHELL) Makefile.SH |
760ac839 |
734 | |
599a829f |
735 | distcheck: FORCE |
760ac839 |
736 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
737 | |
771c4874 |
738 | elc: emacs/cperl-mode.elc |
739 | |
740 | emacs/cperl-mode.elc: emacs/cperl-mode.el |
741 | -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el |
742 | |
d6a255e6 |
743 | etags: TAGS |
744 | |
745 | TAGS: emacs/cperl-mode.elc |
3ee700d1 |
746 | sh emacs/ptags |
01e22528 |
747 | |
d6a255e6 |
748 | ctags: tags |
749 | |
750 | # Let's hope make will not go into an infinite loop on case-unsensitive systems |
751 | # This may also fail if . is in the head of the path, since perl will |
752 | # require -Ilib |
753 | tags: TAGS |
754 | perl emacs/e2ctags.pl TAGS > tags |
3ee700d1 |
755 | |
2304df62 |
756 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
757 | # If this runs make out of memory, delete /usr/include lines. |
758 | !NO!SUBS! |
759 | |
85e6fe83 |
760 | $eunicefix Makefile |
2304df62 |
761 | case `pwd` in |
762 | *SH) |
85e6fe83 |
763 | $rm -f ../Makefile |
cd4d8a96 |
764 | $ln Makefile ../Makefile |
2304df62 |
765 | ;; |
766 | esac |
cd4d8a96 |
767 | $rm -f $firstmakefile |
5ff3f7a4 |
768 | |
769 | # Now do any special processing required before building. |
770 | |
771 | case "$ebcdic" in |
772 | $define) |
773 | xxx='' |
774 | echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4 |
7a66b286 |
775 | case "$osname" in |
25e9a2e3 |
776 | os390|posix-bc) |
5ff3f7a4 |
777 | rm -f y.tab.c y.tab.h |
e9d08790 |
778 | # yacc must be a reentrant ("pure") Bison in BS2000 Posix! |
5ff3f7a4 |
779 | yacc -d perly.y >/dev/null 2>&1 |
780 | if cmp -s y.tab.c perly.c; then |
781 | rm -f y.tab.c |
782 | else |
783 | echo "perly.y -> perly.c" >&2 |
784 | mv -f y.tab.c perly.c |
785 | chmod u+w perly.c |
c8dba6f3 |
786 | sed -e '/^#include "perl\.h"/a\ |
787 | \ |
788 | #define yydebug PL_yydebug\ |
789 | #define yynerrs PL_yynerrs\ |
790 | #define yyerrflag PL_yyerrflag\ |
791 | #define yychar PL_yychar\ |
c8dba6f3 |
792 | #define yyval PL_yyval\ |
793 | #define yylval PL_yylval' \ |
794 | -e '/YYSTYPE *yyval;/D' \ |
795 | -e '/YYSTYPE *yylval;/D' \ |
796 | -e '/int yychar,/,/yynerrs;/D' \ |
797 | -e 's/int yydebug = 0;/yydebug = 0;/' \ |
798 | -e 's/[^_]realloc(/PerlMem_realloc(/g' \ |
799 | -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
5ff3f7a4 |
800 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
801 | xxx="$xxx perly.c" |
802 | fi |
803 | if cmp -s y.tab.h perly.h; then |
804 | rm -f y.tab.h |
805 | else |
806 | echo "perly.y -> perly.h" >&2 |
807 | mv -f y.tab.h perly.h |
808 | xxx="$xxx perly.h" |
809 | fi |
e9d08790 |
810 | if cd x2p |
5ff3f7a4 |
811 | then |
e9d08790 |
812 | rm -f y.tab.c y.tab.h |
5928ee40 |
813 | case "$osname" in |
814 | posix-bc) |
815 | # we are using two different yaccs in BS2000 Posix! |
816 | byacc a2p.y >/dev/null 2>&1 |
817 | ;; |
818 | *) # e.g. os390 |
819 | yacc a2p.y >/dev/null 2>&1 |
820 | ;; |
821 | esac |
e9d08790 |
822 | if cmp -s y.tab.c a2p.c |
823 | then |
824 | rm -f y.tab.c |
825 | else |
826 | echo "a2p.y -> a2p.c" >&2 |
827 | mv -f y.tab.c a2p.c |
828 | chmod u+w a2p.c |
829 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
830 | -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c |
831 | xxx="$xxx a2p.c" |
832 | fi |
833 | # In case somebody yacc -d:ed the a2p.y. |
834 | if test -f y.tab.h |
835 | then |
836 | if cmp -s y.tab.h a2p.h |
837 | then |
838 | rm -f y.tab.h |
839 | else |
840 | echo "a2p.h -> a2p.h" >&2 |
841 | mv -f y.tab.h a2p.h |
842 | xxx="$xxx a2p.h" |
843 | fi |
844 | fi |
845 | cd .. |
5ff3f7a4 |
846 | fi |
7a66b286 |
847 | ;; |
848 | vmesa) |
849 | # Do nothing in VM/ESA. |
850 | ;; |
aa34f189 |
851 | *) |
e9d08790 |
852 | echo "'$osname' is an EBCDIC system I don't know that well." >&4 |
aa34f189 |
853 | ;; |
fe572743 |
854 | esac |
5ff3f7a4 |
855 | case "$xxx" in |
856 | '') echo "No parser files were regenerated. That's okay." >&2 ;; |
857 | esac |
858 | ;; |
859 | esac |
860 | |