Fixed AIX dynamic loading and AIX shared Perl library.
[p5sagit/p5-mst-13.2.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* libperl.so.
33         ldlibpth="LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH"
34
35         pldlflags="$cccdlflags"
36         # NeXT-4 specific stuff.  Can't we do this in the hint file?
37         case "${osname}${osvers}" in
38         next4*)
39                 ld=libtool
40                 lddlflags="-dynamic -undefined warning -framework System \
41                 -compatibility_version 1 -current_version $patchlevel \
42                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
43                 # NeXT uses a different name.
44                 ldlibpth="DYLD_LIBRARY_PATH=`pwd`:$DYLD_LIBRARY_PATH"
45                 ;;
46         rhapsody*)
47                 ldlibpth="DYLD_LIBRARY_PATH=`pwd`/Perl:$DYLD_LIBRARY_PATH"
48                 ;;
49         cygwin*)        ldlibpth="PATH='`pwd`:$PATH'"
50                 linklibperl="-lperl"
51                 ;;
52         os2*)   # OS/2 doesn't need anything special for LD_LIBRARY_PATH.
53                 ldlibpth=''
54                 ;;
55         sunos*)
56                 linklibperl="-lperl"
57                 ;;
58         netbsd*|freebsd[234]*|openbsd*)
59                 linklibperl="-L. -lperl"
60                 ;;
61         aix*)
62                 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
63                 case "$osvers" in
64                 3*)     shrpldflags="$shrpldflags -e _nostart"
65                         ;;
66                 *)      shrpldflags="$shrpldflags -b noentry"
67                         ;;
68                 esac
69                 shrpldflags="$shrpldflags $ldflags $libs $cryptlib"
70                 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
71                 ldlibpth="LIBPATH=`pwd`:${LIBPATH}"
72                 ;;
73         hpux*)
74                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
75                 ldlibpth="SHLIB_PATH=`pwd`:${SHLIB_PATH}"
76                 ;;
77         beos*)  ldlibpth="LIBRARY_PATH=`pwd`:$LIBRARY_PATH"
78                 ;;
79         esac
80         ;;
81 *)      pldlflags=''
82         ;;
83 esac
84
85 : Prepare dependency lists for Makefile.
86 dynamic_list=' '
87 for f in $dynamic_ext; do
88     : the dependency named here will never exist
89       base=`echo "$f" | sed 's/.*\///'`
90     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
91 done
92
93 static_list=' '
94 for f in $static_ext; do
95         base=`echo "$f" | sed 's/.*\///'`
96         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
97 done
98
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
105 echo "Extracting Makefile (with variable substitutions)"
106 $spitshell >Makefile <<!GROK!THIS!
107 # Makefile.SH
108 # This file is derived from Makefile.SH.  Any changes made here will
109 # be lost the next time you run Configure.
110 #  Makefile is used to generate $firstmakefile.  The only difference
111 #  is that $firstmakefile has the dependencies filled in at the end.
112 #
113 #
114 # I now supply perly.c with the kits, so don't remake perly.c without byacc
115 BYACC = $byacc
116 CC = $cc
117 LD = $ld
118
119 LDFLAGS = $ldflags
120 CLDFLAGS = $ldflags
121
122 SMALL = $small
123 LARGE = $large $split
124 mallocsrc = $mallocsrc
125 mallocobj = $mallocobj
126 LNS = $lns
127 RMS = rm -f
128 ranlib = $ranlib
129
130 # The following are mentioned only to make metaconfig include the
131 # appropriate questions in Configure.  If you want to change these,
132 # edit config.sh instead, or specify --man1dir=/wherever on
133 # installman commandline.
134 bin = $installbin
135 scriptdir = $scriptdir
136 shrpdir = $archlibexp/CORE
137 privlib = $installprivlib
138 man1dir = $man1dir
139 man1ext = $man1ext
140 man3dir = $man3dir
141 man3ext = $man3ext
142
143 # The following are used to build and install shared libraries for
144 # dynamic loading.
145 LDDLFLAGS = $lddlflags
146 SHRPLDFLAGS = $shrpldflags
147 CCDLFLAGS = $ccdlflags
148 DLSUFFIX = .$dlext
149 PLDLFLAGS = $pldlflags
150 LIBPERL = $libperl
151 LLIBPERL= $linklibperl
152 SHRPENV = $shrpenv
153
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
158 dynamic_ext = $dynamic_list
159 static_ext = $static_list
160 nonxs_ext = $nonxs_list
161 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
162 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
163
164 libs = $libs $cryptlib
165
166 public = perl $suidperl utilities translators
167
168 shellflags = $shellflags
169
170 # This is set to  MAKE=$make if your $make command doesn't
171 # do it for you.
172 $make_set_make
173
174 # These variables may need to be manually set for non-Unix systems.
175 AR = $full_ar
176 EXE_EXT = $_exe
177 LIB_EXT = $_a
178 OBJ_EXT = $_o
179 PATH_SEP = $p_
180
181 FIRSTMAKEFILE = $firstmakefile
182
183 # Any special object files needed by this architecture, e.g. os2/os2.obj
184 ARCHOBJS = $archobjs
185
186 .SUFFIXES: .c \$(OBJ_EXT)
187
188 # grrr
189 SHELL = $sh
190
191 # how to tr(anslate) newlines
192 TRNL = '$trnl'
193
194 !GROK!THIS!
195
196 ## In the following dollars and backticks do not need the extra backslash.
197 $spitshell >>Makefile <<'!NO!SUBS!'
198
199 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
200
201 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
202
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 \
206         makedir.SH myconfig.SH writemain.SH
207
208 shextract = Makefile cflags config.h makeaperl makedepend \
209         makedir myconfig writemain
210
211 # Files to be built with variable substitution after miniperl is
212 # available.  Dependencies handled manually below (for now).
213
214 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
215         pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
216
217 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
218         pod/pod2usage pod/podchecker pod/podselect
219
220 addedbyconf = UU $(shextract) $(plextract) pstruct
221
222 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
223 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
224 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
225 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
226 h5 = utf8.h warning.h
227 h = $(h1) $(h2) $(h3) $(h4) $(h5)
228
229 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
230 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
231 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c
232
233 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
234
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)
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)
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)
238
239 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
240
241 # Once perl has been Configure'd and built ok you build different
242 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
243 #       make clean; make LIBPERL=libperl<type>.a
244 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
245 # See cflags to understand how this works.
246 #
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 #
250
251 lintflags = -hbvxac
252
253 .c$(OBJ_EXT):
254         $(CCCMD) $(PLDLFLAGS) $*.c
255
256 all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext) $(nonxs_ext)
257         @echo " ";
258         @echo " Everything is up to date. 'make test' to run test suite."
259
260 compile: all
261         echo "testing compilation" > testcompile;
262         cd utils;  $(MAKE) compile;
263         cd x2p; $(MAKE) compile; 
264         cd pod; $(MAKE) compile;
265
266 translators:    miniperl lib/Config.pm FORCE
267         @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
268
269 utilities:      miniperl lib/Config.pm FORCE
270         @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
271
272
273 # This is now done by installman only if you actually want the man pages.
274 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
275
276 # Phony target to force checking subdirectories.
277 # Apparently some makes require an action for the FORCE target.
278 FORCE:
279         @sh -c true
280
281 miniperlmain$(OBJ_EXT): miniperlmain.c
282         $(CCCMD) $(PLDLFLAGS) $*.c
283
284 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
285         sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
286         sh mv-if-diff writemain.tmp perlmain.c
287
288 perlmain$(OBJ_EXT): perlmain.c
289         $(CCCMD) $(PLDLFLAGS) $*.c
290
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.
294 ext.libs: $(static_ext)
295         -@test -f ext.libs || touch ext.libs
296
297 !NO!SUBS!
298
299 # How to build libperl.  This is still rather convoluted.
300 # Load up custom Makefile.SH fragment for shared loading and executables:
301 case "$osname" in
302 cygwin*)
303         Makefile_s="cygwin32/Makefile.SHs"
304         ;;
305 *)
306         Makefile_s="$osname/Makefile.SHs"
307         ;;
308 esac
309
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
355 if test -r $Makefile_s ; then
356         . $Makefile_s
357         $spitshell >>Makefile <<!GROK!THIS!
358
359 Makefile: $Makefile_s
360 !GROK!THIS!
361 else
362         $spitshell >>Makefile <<'!NO!SUBS!'
363 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
364 !NO!SUBS!
365         case "$useshrplib" in
366         true)
367                 $spitshell >>Makefile <<'!NO!SUBS!'
368         $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
369 !NO!SUBS!
370                 case "$osname" in
371                 aix)
372                         $spitshell >>Makefile <<'!NO!SUBS!'
373         rm -f libperl$(OBJ_EXT)
374         mv $@ libperl$(OBJ_EXT)
375         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
376 !NO!SUBS!
377                         ;;
378                 esac
379                 ;;
380         *)
381                 $spitshell >>Makefile <<'!NO!SUBS!'
382         rm -f $(LIBPERL)
383         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
384         @$(ranlib) $(LIBPERL)
385 !NO!SUBS!
386                 ;;
387         esac
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)
401         $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
402         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
403
404 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
405         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
406
407 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
408         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
409
410 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
411         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
412
413 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
414         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
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
421 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
422         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
423
424 !NO!SUBS!
425
426 fi
427
428 $spitshell >>Makefile <<'!NO!SUBS!'
429
430 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
431         $(RMS) sperl.c
432         $(LNS) perl.c sperl.c
433         $(CCCMD) -DIAMSUID sperl.c
434         $(RMS) sperl.c
435
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 #
439 preplibrary: miniperl lib/Config.pm $(plextract)
440         @sh ./makedir lib/auto
441         @echo " AutoSplitting perl library"
442         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
443                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
444
445 # Take care to avoid modifying lib/Config.pm without reason
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.)
448 lib/Config.pm: config.sh miniperl configpm
449         $(LDLIBPTH) ./miniperl configpm configpm.tmp
450         sh mv-if-diff configpm.tmp $@
451
452 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
453         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
454         sh mv-if-diff minimod.tmp $@
455
456 lib/re.pm: ext/re/re.pm
457         rm -f $@
458         cat ext/re/re.pm > $@
459
460 $(plextract):   miniperl lib/Config.pm lib/re.pm
461         $(LDLIBPTH) ./miniperl -Ilib $@.PL
462         
463 install: all install.perl install.man
464
465 install.perl:   all installperl
466         if [ -n "$(COMPILE)" ]; \
467         then \
468                 cd utils; $(MAKE) compile; \
469                 cd ../x2p; $(MAKE) compile; \
470                 cd ../pod; $(MAKE) compile; \
471         else :; \
472         fi
473         $(LDLIBPTH) ./perl installperl
474
475 install.man:    all installman
476         $(LDLIBPTH) ./perl installman
477
478 # XXX Experimental. Hardwired values, but useful for testing.
479 # Eventually Configure could ask for some of these values.
480 install.html: all installhtml
481         $(LDLIBPTH) ./perl installhtml                   \
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
490
491 # I now supply perly.c with the kits, so the following section is
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
498 run_byacc:      FORCE
499         @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
500         $(BYACC) -d perly.y
501         chmod 664 perly.c
502         sh $(shellflags) ./perly.fixer y.tab.c perly.c
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
505         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
506         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
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
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
514         -@sh -c true
515
516 perly.h: perly.y
517         -@sh -c true
518
519 # No compat3.sym here since and including the 5.004_50.
520 # No interp.sym since 5.005_03.
521 SYM  = global.sym globvar.sym perlio.sym pp.sym
522
523 SYMH = perlvars.h intrpvar.h thrdvar.h
524
525 # The following files are generated automatically
526 #       keywords.h:     keywords.pl
527 #       opcode.h:       opcode.pl
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! *]
532 #       ext/ByteLoader/byterun.h:       bytecode.pl
533 #       ext/ByteLoader/byterun.c:       bytecode.pl
534 #       ext/B/Asmdata.pm:       bytecode.pl
535 #       regnodes.h:     regcomp.pl
536 #       warning.h lib/warning.pm:       warning.pl
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
545         perl bytecode.pl
546         perl regcomp.pl
547         perl warning.pl
548
549 # Extensions:
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.
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
560         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
561
562 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
563         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
564
565 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
566         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
567
568 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
569         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
570
571 clean:          _tidy _mopup
572
573 realclean:      _cleaner _mopup
574         @echo "Note that make realclean does not delete config.sh or Policy.sh"
575
576 clobber:        _cleaner _mopup
577         rm -f config.sh cppstdin Policy.sh
578
579 distclean:      clobber
580
581 # Do not 'make _mopup' directly.
582 _mopup:
583         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
584         rm -f perl.exp ext.libs
585         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
586         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
587         rm -f perl suidperl miniperl $(LIBPERL)
588
589 # Do not 'make _tidy' directly.
590 _tidy:
591         -cd pod; $(LDLIBPTH) $(MAKE) clean
592         -cd utils; $(LDLIBPTH) $(MAKE) clean
593         -cd x2p; $(LDLIBPTH) $(MAKE) clean
594         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
595         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
596         done
597         rm -f testcompile compilelog
598
599 # Do not 'make _cleaner' directly.
600 _cleaner:
601         -cd os2; rm -f Makefile
602         -cd pod; $(LDLIBPTH) $(MAKE) realclean
603         -cd utils; $(LDLIBPTH) $(MAKE) realclean
604         -cd x2p; $(LDLIBPTH) $(MAKE) realclean
605         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
606         $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
607         done
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)
609         rm -rf $(addedbyconf)
610         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
611         rm -f $(private)
612         rm -rf lib/auto
613         rm -f lib/.exists lib/*/.exists
614         rm -f h2ph.man pstruct
615         rm -rf .config
616         rm -f testcompile compilelog
617         -rmdir lib/B lib/Data lib/IO/Socket lib/IO
618
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
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.
630
631 MAKEDEPEND = Makefile makedepend
632
633 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
634         $(MAKE) depend MAKEDEPEND=
635
636 config.h: config_h.SH config.sh
637         $(SHELL) config_h.SH
638
639 # When done, touch perlmain.c so that it doesn't get remade each time.
640 depend: makedepend
641         sh ./makedepend MAKE=$(MAKE)
642         - test -s perlmain.c && touch perlmain.c
643         cd x2p; $(MAKE) depend
644
645 # Cannot postpone this until $firstmakefile is ready ;-)
646 makedepend: makedepend.SH config.sh
647         sh ./makedepend.SH
648
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)
652         cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
653
654 # Second branch is for testing without a tty or controling terminal.
655 # See t/op/stat.t
656 test check: test-prep
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
662
663 utest ucheck: test-prep
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
669
670 # For testing without a tty or controling terminal. See t/op/stat.t
671 test-notty: test-prep
672         cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
673
674 # Can't depend on lib/Config.pm because that might be where miniperl
675 # is crashing.
676 minitest: miniperl lib/re.pm
677         @echo "You may see some irrelevant test failures if you have been unable"
678         @echo "to build lib/Config.pm."
679         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
680                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
681
682 # Handy way to run perlbug -ok without having to install and run the
683 # installed perlbug. We don't re-run the tests here - we trust the user.
684 # Please *don't* use this unless all tests pass.
685 # If you want to report test failures, use "make nok" instead.
686 ok:     utilities
687         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
688
689 okfile: utilities
690         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
691
692 nok:    utilities
693         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
694
695 clist:  $(c)
696         echo $(c) | tr ' ' $(TRNL) >.clist
697
698 hlist:  $(h)
699         echo $(h) | tr ' ' $(TRNL) >.hlist
700
701 shlist: $(sh)
702         echo $(sh) | tr ' ' $(TRNL) >.shlist
703
704 pllist: $(pl)
705         echo $(pl) | tr ' ' $(TRNL) >.pllist
706
707 Makefile: Makefile.SH ./config.sh
708         $(SHELL) Makefile.SH
709
710 distcheck: FORCE
711         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
712
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
718 etags:  TAGS
719
720 TAGS: emacs/cperl-mode.elc
721         sh emacs/ptags
722
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
730
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
735 $eunicefix Makefile
736 case `pwd` in
737 *SH)
738     $rm -f ../Makefile
739     $ln Makefile ../Makefile
740     ;;
741 esac
742 $rm -f $firstmakefile
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
750 case "$osname" in
751 os390|posix-bc)
752     rm -f y.tab.c y.tab.h
753     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
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
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\
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' \
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
785     if cd x2p
786     then
787         rm -f y.tab.c y.tab.h
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
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 ..
821     fi
822     ;;
823 vmesa)
824     # Do nothing in VM/ESA.
825     ;;
826 *)
827     echo "'$osname' is an EBCDIC system I don't know that well." >&4
828     ;;
829 esac
830     case "$xxx" in
831     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
832     esac
833     ;;
834 esac
835