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