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