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 |
5f9d9a17 |
314 | # In AIX we need to change this for building Perl itself from |
315 | # its earlier definition (which is for building external |
316 | # extensions *after* Perl has been built and installed) |
317 | CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'` |
549a6b10 |
318 | |
319 | !GROK!THIS! |
320 | case "$useshrplib" in |
321 | define|true|[yY]*) |
322 | $spitshell >>Makefile <<'!NO!SUBS!' |
323 | |
324 | LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT) |
325 | MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT) |
326 | |
327 | $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj) |
328 | $(RMS) $(LIBPERL_NONSHR) |
329 | $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj) |
330 | |
331 | $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) |
332 | $(CC) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS) |
333 | |
334 | MINIPERLEXP = $(MINIPERL_NONSHR) |
335 | |
336 | LIBPERLEXPORT = perl.exp |
337 | |
338 | !NO!SUBS! |
339 | |
340 | ;; |
341 | *) |
342 | $spitshell >>Makefile <<'!NO!SUBS!' |
343 | MINIPERLEXP = miniperl$(EXE_EXT) |
344 | |
345 | PERLEXPORT = perl.exp |
346 | |
347 | !NO!SUBS! |
348 | ;; |
349 | esac |
350 | $spitshell >>Makefile <<'!NO!SUBS!' |
351 | perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) |
352 | ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp |
353 | sh mv-if-diff perl.exp.tmp perl.exp |
354 | |
355 | !NO!SUBS! |
356 | ;; |
357 | esac |
358 | |
8736538c |
359 | if test -r $Makefile_s ; then |
360 | . $Makefile_s |
d96ebe2e |
361 | $spitshell >>Makefile <<!GROK!THIS! |
cd4d8a96 |
362 | |
8736538c |
363 | Makefile: $Makefile_s |
cd4d8a96 |
364 | !GROK!THIS! |
365 | else |
f0efd8cf |
366 | $spitshell >>Makefile <<'!NO!SUBS!' |
549a6b10 |
367 | $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT) |
9c9e9f08 |
368 | !NO!SUBS! |
d96ebe2e |
369 | case "$useshrplib" in |
370 | true) |
371 | $spitshell >>Makefile <<'!NO!SUBS!' |
3c321fdc |
372 | $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj) |
373 | !NO!SUBS! |
374 | case "$osname" in |
375 | aix) |
376 | $spitshell >>Makefile <<'!NO!SUBS!' |
28e8609d |
377 | rm -f libperl$(OBJ_EXT) |
3c321fdc |
378 | mv $@ libperl$(OBJ_EXT) |
379 | $(AR) qv $(LIBPERL) libperl$(OBJ_EXT) |
ecfc5424 |
380 | !NO!SUBS! |
3c321fdc |
381 | ;; |
382 | esac |
d96ebe2e |
383 | ;; |
384 | *) |
385 | $spitshell >>Makefile <<'!NO!SUBS!' |
386 | rm -f $(LIBPERL) |
387 | $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj) |
388 | @$(ranlib) $(LIBPERL) |
655635e8 |
389 | !NO!SUBS! |
d96ebe2e |
390 | ;; |
391 | esac |
599a829f |
392 | $spitshell >>Makefile <<'!NO!SUBS!' |
393 | |
394 | # How to build executables. |
395 | |
396 | # The $& notation tells Sequent machines that it can do a parallel make, |
397 | # and is harmless otherwise. |
398 | # The miniperl -w -MExporter line is a basic cheap test to catch errors |
399 | # before make goes on to run preplibrary and then MakeMaker on extensions. |
400 | # This is very handy because later errors are often caused by miniperl |
401 | # build problems but that's not obvious to the novice. |
402 | # The Module used here must not depend on Config or any extensions. |
403 | |
404 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) |
6ee623d5 |
405 | $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs) |
bfc6b1eb |
406 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest |
599a829f |
407 | |
549a6b10 |
408 | perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
409 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f |
410 | |
549a6b10 |
411 | pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
412 | $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f |
413 | |
549a6b10 |
414 | purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
415 | $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
dbadb36a |
416 | |
549a6b10 |
417 | quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
418 | $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 |
419 | |
420 | # This version, if specified in Configure, does ONLY those scripts which need |
421 | # set-id emulation. Suidperl must be setuid root. It contains the "taint" |
422 | # checks as well as the special code to validate that the script in question |
423 | # has been invoked correctly. |
424 | |
549a6b10 |
425 | suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
6ee623d5 |
426 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 |
427 | |
599a829f |
428 | !NO!SUBS! |
429 | |
430 | fi |
431 | |
432 | $spitshell >>Makefile <<'!NO!SUBS!' |
433 | |
cd4d8a96 |
434 | sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h) |
2304df62 |
435 | $(RMS) sperl.c |
85e6fe83 |
436 | $(LNS) perl.c sperl.c |
d96ebe2e |
437 | $(CCCMD) -DIAMSUID sperl.c |
2304df62 |
438 | $(RMS) sperl.c |
439 | |
fec02dd3 |
440 | # We have to call our ./makedir because Ultrix 4.3 make can't handle the line |
441 | # test -d lib/auto || mkdir lib/auto |
442 | # |
4633a7c4 |
443 | preplibrary: miniperl lib/Config.pm $(plextract) |
cd4d8a96 |
444 | @sh ./makedir lib/auto |
a0d0e21e |
445 | @echo " AutoSplitting perl library" |
bfc6b1eb |
446 | $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ |
a0d0e21e |
447 | autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm |
2304df62 |
448 | |
75f92628 |
449 | # Take care to avoid modifying lib/Config.pm without reason |
fb73857a |
450 | # (If trying to create a new port and having problems with the configpm script, |
451 | # try 'make minitest' and/or commenting out the tests at the end of configpm.) |
655635e8 |
452 | lib/Config.pm: config.sh miniperl configpm |
e8827f64 |
453 | $(LDLIBPTH) ./miniperl configpm configpm.tmp |
454 | sh mv-if-diff configpm.tmp $@ |
2304df62 |
455 | |
37120919 |
456 | lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm |
e8827f64 |
457 | $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp |
458 | sh mv-if-diff minimod.tmp $@ |
fed7345c |
459 | |
56953603 |
460 | lib/re.pm: ext/re/re.pm |
ceb0239c |
461 | rm -f $@ |
56953603 |
462 | cat ext/re/re.pm > $@ |
463 | |
464 | $(plextract): miniperl lib/Config.pm lib/re.pm |
474d7bc5 |
465 | $(LDLIBPTH) ./miniperl -Ilib $@.PL |
6ee623d5 |
466 | |
16d20bd9 |
467 | install: all install.perl install.man |
468 | |
cd4d8a96 |
469 | install.perl: all installperl |
6ee623d5 |
470 | if [ -n "$(COMPILE)" ]; \ |
471 | then \ |
472 | cd utils; $(MAKE) compile; \ |
473 | cd ../x2p; $(MAKE) compile; \ |
474 | cd ../pod; $(MAKE) compile; \ |
83673e1f |
475 | else :; \ |
6ee623d5 |
476 | fi |
477 | $(LDLIBPTH) ./perl installperl |
a0d0e21e |
478 | |
cd4d8a96 |
479 | install.man: all installman |
6ee623d5 |
480 | $(LDLIBPTH) ./perl installman |
16d20bd9 |
481 | |
84902520 |
482 | # XXX Experimental. Hardwired values, but useful for testing. |
483 | # Eventually Configure could ask for some of these values. |
484 | install.html: all installhtml |
6ee623d5 |
485 | $(LDLIBPTH) ./perl installhtml \ |
84902520 |
486 | --podroot=. --podpath=. --recurse \ |
487 | --htmldir=$(privlib)/html \ |
488 | --htmlroot=$(privlib)/html \ |
489 | --splithead=pod/perlipc \ |
490 | --splititem=pod/perlfunc \ |
491 | --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \ |
492 | --verbose |
493 | |
16d20bd9 |
494 | |
a0d0e21e |
495 | # I now supply perly.c with the kits, so the following section is |
56febc5e |
496 | # used only if you force byacc to run by saying |
497 | # make run_byacc |
498 | # Since we patch up the byacc output, the perly.fixer script needs |
499 | # to run with precisely the same version of byacc as I use. You |
500 | # normally shouldn't remake perly.[ch]. |
501 | |
232e078e |
502 | run_byacc: FORCE |
28757baa |
503 | @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict |
56febc5e |
504 | $(BYACC) -d perly.y |
fb73857a |
505 | chmod 664 perly.c |
56febc5e |
506 | sh $(shellflags) ./perly.fixer y.tab.c perly.c |
55497cff |
507 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
508 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
ebb99254 |
509 | sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h |
55497cff |
510 | cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h |
fb73857a |
511 | chmod 664 vms/perly_c.vms vms/perly_h.vms |
512 | perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms |
56febc5e |
513 | |
514 | # We don't want to regenerate perly.c and perly.h, but they might |
515 | # appear out-of-date after a patch is applied or a new distribution is |
516 | # made. |
517 | perly.c: perly.y |
cd4d8a96 |
518 | -@sh -c true |
56febc5e |
519 | |
520 | perly.h: perly.y |
cd4d8a96 |
521 | -@sh -c true |
a0d0e21e |
522 | |
bd656b61 |
523 | # No compat3.sym here since and including the 5.004_50. |
e4d5a464 |
524 | # No interp.sym since 5.005_03. |
22c35a8c |
525 | SYM = global.sym globvar.sym perlio.sym pp.sym |
419eaf7b |
526 | |
22c35a8c |
527 | SYMH = perlvars.h intrpvar.h thrdvar.h |
419eaf7b |
528 | |
a8581515 |
529 | # The following files are generated automatically |
e50aee73 |
530 | # keywords.h: keywords.pl |
531 | # opcode.h: opcode.pl |
22c35a8c |
532 | # pp_proto.h: opcode.pl |
533 | # pp.sym: opcode.pl |
534 | # embed.h: embed.pl [* needs pp.sym generated by opcode.pl! *] |
535 | # embedvar.h: embed.pl [* needs pp.sym generated by opcode.pl! *] |
e8edd1e6 |
536 | # ext/ByteLoader/byterun.h: bytecode.pl |
537 | # ext/ByteLoader/byterun.c: bytecode.pl |
538 | # ext/B/Asmdata.pm: bytecode.pl |
d09b2d29 |
539 | # regnodes.h: regcomp.pl |
599cee73 |
540 | # warning.h lib/warning.pm: warning.pl |
e50aee73 |
541 | # The correct versions should be already supplied with the perl kit, |
542 | # in case you don't have perl available. |
543 | # To force them to run, type |
544 | # make regen_headers |
545 | regen_headers: FORCE |
546 | perl keywords.pl |
547 | perl opcode.pl |
548 | perl embed.pl |
a8581515 |
549 | perl bytecode.pl |
d09b2d29 |
550 | perl regcomp.pl |
599cee73 |
551 | perl warning.pl |
8e07c86e |
552 | |
a0d0e21e |
553 | # Extensions: |
4318d5a0 |
554 | # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |
555 | # automatically get built. There should ordinarily be no need to change |
556 | # any of this part of makefile. |
a0d0e21e |
557 | # |
558 | # The dummy dependency is a place holder in case $(dynamic_ext) or |
559 | # $(static_ext) is empty. |
560 | # |
561 | # DynaLoader may be needed for extensions that use Makefile.PL. |
562 | |
563 | $(DYNALOADER): miniperl preplibrary FORCE |
6ee623d5 |
564 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e |
565 | |
566 | d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE |
6ee623d5 |
567 | @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e |
568 | |
569 | s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE |
6ee623d5 |
570 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
2304df62 |
571 | |
4318d5a0 |
572 | n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE |
573 | @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
574 | |
17b893d8 |
575 | clean: _tidy _mopup |
70af249b |
576 | |
577 | realclean: _cleaner _mopup |
4e2a5f63 |
578 | @echo "Note that make realclean does not delete config.sh or Policy.sh" |
70af249b |
579 | |
580 | clobber: _cleaner _mopup |
4e2a5f63 |
581 | rm -f config.sh cppstdin Policy.sh |
70af249b |
582 | |
583 | distclean: clobber |
584 | |
585 | # Do not 'make _mopup' directly. |
586 | _mopup: |
cd4d8a96 |
587 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c |
fed7345c |
588 | rm -f perl.exp ext.libs |
d96ebe2e |
589 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
1cfa4ec7 |
590 | -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap |
70af249b |
591 | rm -f perl suidperl miniperl $(LIBPERL) |
592 | |
593 | # Do not 'make _tidy' directly. |
594 | _tidy: |
e3f83878 |
595 | -cd pod; $(LDLIBPTH) $(MAKE) clean |
596 | -cd utils; $(LDLIBPTH) $(MAKE) clean |
597 | -cd x2p; $(LDLIBPTH) $(MAKE) clean |
4318d5a0 |
598 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
e3f83878 |
599 | $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ |
a0d0e21e |
600 | done |
6ee623d5 |
601 | rm -f testcompile compilelog |
ff68c719 |
602 | |
603 | # Do not 'make _cleaner' directly. |
604 | _cleaner: |
4633a7c4 |
605 | -cd os2; rm -f Makefile |
e3f83878 |
606 | -cd pod; $(LDLIBPTH) $(MAKE) realclean |
607 | -cd utils; $(LDLIBPTH) $(MAKE) realclean |
608 | -cd x2p; $(LDLIBPTH) $(MAKE) realclean |
4318d5a0 |
609 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
e3f83878 |
610 | $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \ |
a0d0e21e |
611 | done |
549a6b10 |
612 | 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 |
613 | rm -rf $(addedbyconf) |
cd4d8a96 |
614 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old |
fed7345c |
615 | rm -f $(private) |
a0d0e21e |
616 | rm -rf lib/auto |
181ea953 |
617 | rm -f lib/.exists lib/*/.exists |
16d20bd9 |
618 | rm -f h2ph.man pstruct |
a0d0e21e |
619 | rm -rf .config |
6ee623d5 |
620 | rm -f testcompile compilelog |
bb0110d4 |
621 | -rmdir lib/B lib/Data lib/IO/Socket lib/IO |
ecfc5424 |
622 | |
2304df62 |
623 | # The following lint has practically everything turned on. Unfortunately, |
624 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. |
625 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message |
626 | # for that spot. |
627 | |
628 | lint: perly.c $(c) |
629 | lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz |
630 | |
fb73857a |
631 | # Need to unset during recursion to go out of loop. |
632 | # The README below ensures that the dependency list is never empty and |
633 | # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding. |
cd4d8a96 |
634 | |
84902520 |
635 | MAKEDEPEND = Makefile makedepend |
cd4d8a96 |
636 | |
fb73857a |
637 | $(FIRSTMAKEFILE): README $(MAKEDEPEND) |
cd4d8a96 |
638 | $(MAKE) depend MAKEDEPEND= |
a0d0e21e |
639 | |
599a829f |
640 | config.h: config_h.SH config.sh |
655635e8 |
641 | $(SHELL) config_h.SH |
642 | |
a0d0e21e |
643 | # When done, touch perlmain.c so that it doesn't get remade each time. |
2304df62 |
644 | depend: makedepend |
fb73857a |
645 | sh ./makedepend MAKE=$(MAKE) |
a0d0e21e |
646 | - test -s perlmain.c && touch perlmain.c |
2304df62 |
647 | cd x2p; $(MAKE) depend |
648 | |
cd4d8a96 |
649 | # Cannot postpone this until $firstmakefile is ready ;-) |
650 | makedepend: makedepend.SH config.sh |
651 | sh ./makedepend.SH |
652 | |
d6a255e6 |
653 | # Cannot delegate rebuilding of t/perl to make to allow interlaced |
654 | # test and minitest |
655 | test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL) |
3e3baf6d |
656 | cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) |
657 | |
994e9bc0 |
658 | # Second branch is for testing without a tty or controling terminal. |
659 | # See t/op/stat.t |
3e3baf6d |
660 | test check: test-prep |
994e9bc0 |
661 | if (true </dev/tty) >/dev/null 2>&1; then \ |
662 | cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \ |
663 | else \ |
664 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \ |
665 | fi |
3e3baf6d |
666 | |
a0ed51b3 |
667 | utest ucheck: test-prep |
994e9bc0 |
668 | if (true </dev/tty) >/dev/null 2>&1; then \ |
669 | cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \ |
670 | else \ |
671 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \ |
672 | fi |
a0ed51b3 |
673 | |
3e3baf6d |
674 | # For testing without a tty or controling terminal. See t/op/stat.t |
675 | test-notty: test-prep |
6ee623d5 |
676 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST |
2304df62 |
677 | |
d96ebe2e |
678 | # Can't depend on lib/Config.pm because that might be where miniperl |
679 | # is crashing. |
a35c6d74 |
680 | minitest: miniperl lib/re.pm |
d96ebe2e |
681 | @echo "You may see some irrelevant test failures if you have been unable" |
682 | @echo "to build lib/Config.pm." |
cd4d8a96 |
683 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ |
6ee623d5 |
684 | && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty |
16d20bd9 |
685 | |
fb73857a |
686 | # Handy way to run perlbug -ok without having to install and run the |
84902520 |
687 | # installed perlbug. We don't re-run the tests here - we trust the user. |
fb73857a |
688 | # Please *don't* use this unless all tests pass. |
1d2dff63 |
689 | # If you want to report test failures, use "make nok" instead. |
188cd53f |
690 | ok: utilities |
39fa2da7 |
691 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' |
84902520 |
692 | |
105f9295 |
693 | okfile: utilities |
39fa2da7 |
694 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok |
105f9295 |
695 | |
1d2dff63 |
696 | nok: utilities |
39fa2da7 |
697 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' |
1d2dff63 |
698 | |
85e6fe83 |
699 | clist: $(c) |
28e8609d |
700 | echo $(c) | tr ' ' $(TRNL) >.clist |
2304df62 |
701 | |
85e6fe83 |
702 | hlist: $(h) |
28e8609d |
703 | echo $(h) | tr ' ' $(TRNL) >.hlist |
2304df62 |
704 | |
85e6fe83 |
705 | shlist: $(sh) |
28e8609d |
706 | echo $(sh) | tr ' ' $(TRNL) >.shlist |
2304df62 |
707 | |
4633a7c4 |
708 | pllist: $(pl) |
28e8609d |
709 | echo $(pl) | tr ' ' $(TRNL) >.pllist |
4633a7c4 |
710 | |
599a829f |
711 | Makefile: Makefile.SH ./config.sh |
760ac839 |
712 | $(SHELL) Makefile.SH |
713 | |
599a829f |
714 | distcheck: FORCE |
760ac839 |
715 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
716 | |
771c4874 |
717 | elc: emacs/cperl-mode.elc |
718 | |
719 | emacs/cperl-mode.elc: emacs/cperl-mode.el |
720 | -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el |
721 | |
d6a255e6 |
722 | etags: TAGS |
723 | |
724 | TAGS: emacs/cperl-mode.elc |
3ee700d1 |
725 | sh emacs/ptags |
01e22528 |
726 | |
d6a255e6 |
727 | ctags: tags |
728 | |
729 | # Let's hope make will not go into an infinite loop on case-unsensitive systems |
730 | # This may also fail if . is in the head of the path, since perl will |
731 | # require -Ilib |
732 | tags: TAGS |
733 | perl emacs/e2ctags.pl TAGS > tags |
3ee700d1 |
734 | |
2304df62 |
735 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
736 | # If this runs make out of memory, delete /usr/include lines. |
737 | !NO!SUBS! |
738 | |
85e6fe83 |
739 | $eunicefix Makefile |
2304df62 |
740 | case `pwd` in |
741 | *SH) |
85e6fe83 |
742 | $rm -f ../Makefile |
cd4d8a96 |
743 | $ln Makefile ../Makefile |
2304df62 |
744 | ;; |
745 | esac |
cd4d8a96 |
746 | $rm -f $firstmakefile |
5ff3f7a4 |
747 | |
748 | # Now do any special processing required before building. |
749 | |
750 | case "$ebcdic" in |
751 | $define) |
752 | xxx='' |
753 | echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4 |
7a66b286 |
754 | case "$osname" in |
25e9a2e3 |
755 | os390|posix-bc) |
5ff3f7a4 |
756 | rm -f y.tab.c y.tab.h |
e9d08790 |
757 | # yacc must be a reentrant ("pure") Bison in BS2000 Posix! |
5ff3f7a4 |
758 | yacc -d perly.y >/dev/null 2>&1 |
759 | if cmp -s y.tab.c perly.c; then |
760 | rm -f y.tab.c |
761 | else |
762 | echo "perly.y -> perly.c" >&2 |
763 | mv -f y.tab.c perly.c |
764 | chmod u+w perly.c |
c8dba6f3 |
765 | sed -e '/^#include "perl\.h"/a\ |
766 | \ |
767 | #define yydebug PL_yydebug\ |
768 | #define yynerrs PL_yynerrs\ |
769 | #define yyerrflag PL_yyerrflag\ |
770 | #define yychar PL_yychar\ |
c8dba6f3 |
771 | #define yyval PL_yyval\ |
772 | #define yylval PL_yylval' \ |
773 | -e '/YYSTYPE *yyval;/D' \ |
774 | -e '/YYSTYPE *yylval;/D' \ |
775 | -e '/int yychar,/,/yynerrs;/D' \ |
776 | -e 's/int yydebug = 0;/yydebug = 0;/' \ |
777 | -e 's/[^_]realloc(/PerlMem_realloc(/g' \ |
778 | -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
5ff3f7a4 |
779 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
780 | xxx="$xxx perly.c" |
781 | fi |
782 | if cmp -s y.tab.h perly.h; then |
783 | rm -f y.tab.h |
784 | else |
785 | echo "perly.y -> perly.h" >&2 |
786 | mv -f y.tab.h perly.h |
787 | xxx="$xxx perly.h" |
788 | fi |
e9d08790 |
789 | if cd x2p |
5ff3f7a4 |
790 | then |
e9d08790 |
791 | rm -f y.tab.c y.tab.h |
5928ee40 |
792 | case "$osname" in |
793 | posix-bc) |
794 | # we are using two different yaccs in BS2000 Posix! |
795 | byacc a2p.y >/dev/null 2>&1 |
796 | ;; |
797 | *) # e.g. os390 |
798 | yacc a2p.y >/dev/null 2>&1 |
799 | ;; |
800 | esac |
e9d08790 |
801 | if cmp -s y.tab.c a2p.c |
802 | then |
803 | rm -f y.tab.c |
804 | else |
805 | echo "a2p.y -> a2p.c" >&2 |
806 | mv -f y.tab.c a2p.c |
807 | chmod u+w a2p.c |
808 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
809 | -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c |
810 | xxx="$xxx a2p.c" |
811 | fi |
812 | # In case somebody yacc -d:ed the a2p.y. |
813 | if test -f y.tab.h |
814 | then |
815 | if cmp -s y.tab.h a2p.h |
816 | then |
817 | rm -f y.tab.h |
818 | else |
819 | echo "a2p.h -> a2p.h" >&2 |
820 | mv -f y.tab.h a2p.h |
821 | xxx="$xxx a2p.h" |
822 | fi |
823 | fi |
824 | cd .. |
5ff3f7a4 |
825 | fi |
7a66b286 |
826 | ;; |
827 | vmesa) |
828 | # Do nothing in VM/ESA. |
829 | ;; |
aa34f189 |
830 | *) |
e9d08790 |
831 | echo "'$osname' is an EBCDIC system I don't know that well." >&4 |
aa34f189 |
832 | ;; |
fe572743 |
833 | esac |
5ff3f7a4 |
834 | case "$xxx" in |
835 | '') echo "No parser files were regenerated. That's okay." >&2 ;; |
836 | esac |
837 | ;; |
838 | esac |
839 | |