AIX magic: ccdlflags needs to be different for
[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 # 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@'`
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
359 if test -r $Makefile_s ; then
360         . $Makefile_s
361         $spitshell >>Makefile <<!GROK!THIS!
362
363 Makefile: $Makefile_s
364 !GROK!THIS!
365 else
366         $spitshell >>Makefile <<'!NO!SUBS!'
367 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
368 !NO!SUBS!
369         case "$useshrplib" in
370         true)
371                 $spitshell >>Makefile <<'!NO!SUBS!'
372         $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
373 !NO!SUBS!
374                 case "$osname" in
375                 aix)
376                         $spitshell >>Makefile <<'!NO!SUBS!'
377         rm -f libperl$(OBJ_EXT)
378         mv $@ libperl$(OBJ_EXT)
379         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
380 !NO!SUBS!
381                         ;;
382                 esac
383                 ;;
384         *)
385                 $spitshell >>Makefile <<'!NO!SUBS!'
386         rm -f $(LIBPERL)
387         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
388         @$(ranlib) $(LIBPERL)
389 !NO!SUBS!
390                 ;;
391         esac
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)
405         $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
406         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
407
408 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
409         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
410
411 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
412         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
413
414 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
415         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
416
417 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
418         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
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
425 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
426         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
427
428 !NO!SUBS!
429
430 fi
431
432 $spitshell >>Makefile <<'!NO!SUBS!'
433
434 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
435         $(RMS) sperl.c
436         $(LNS) perl.c sperl.c
437         $(CCCMD) -DIAMSUID sperl.c
438         $(RMS) sperl.c
439
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 #
443 preplibrary: miniperl lib/Config.pm $(plextract)
444         @sh ./makedir lib/auto
445         @echo " AutoSplitting perl library"
446         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
447                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
448
449 # Take care to avoid modifying lib/Config.pm without reason
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.)
452 lib/Config.pm: config.sh miniperl configpm
453         $(LDLIBPTH) ./miniperl configpm configpm.tmp
454         sh mv-if-diff configpm.tmp $@
455
456 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
457         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
458         sh mv-if-diff minimod.tmp $@
459
460 lib/re.pm: ext/re/re.pm
461         rm -f $@
462         cat ext/re/re.pm > $@
463
464 $(plextract):   miniperl lib/Config.pm lib/re.pm
465         $(LDLIBPTH) ./miniperl -Ilib $@.PL
466         
467 install: all install.perl install.man
468
469 install.perl:   all installperl
470         if [ -n "$(COMPILE)" ]; \
471         then \
472                 cd utils; $(MAKE) compile; \
473                 cd ../x2p; $(MAKE) compile; \
474                 cd ../pod; $(MAKE) compile; \
475         else :; \
476         fi
477         $(LDLIBPTH) ./perl installperl
478
479 install.man:    all installman
480         $(LDLIBPTH) ./perl installman
481
482 # XXX Experimental. Hardwired values, but useful for testing.
483 # Eventually Configure could ask for some of these values.
484 install.html: all installhtml
485         $(LDLIBPTH) ./perl installhtml                   \
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
494
495 # I now supply perly.c with the kits, so the following section is
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
502 run_byacc:      FORCE
503         @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
504         $(BYACC) -d perly.y
505         chmod 664 perly.c
506         sh $(shellflags) ./perly.fixer y.tab.c perly.c
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
509         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
510         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
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
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
518         -@sh -c true
519
520 perly.h: perly.y
521         -@sh -c true
522
523 # No compat3.sym here since and including the 5.004_50.
524 # No interp.sym since 5.005_03.
525 SYM  = global.sym globvar.sym perlio.sym pp.sym
526
527 SYMH = perlvars.h intrpvar.h thrdvar.h
528
529 # The following files are generated automatically
530 #       keywords.h:     keywords.pl
531 #       opcode.h:       opcode.pl
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! *]
536 #       ext/ByteLoader/byterun.h:       bytecode.pl
537 #       ext/ByteLoader/byterun.c:       bytecode.pl
538 #       ext/B/Asmdata.pm:       bytecode.pl
539 #       regnodes.h:     regcomp.pl
540 #       warning.h lib/warning.pm:       warning.pl
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
549         perl bytecode.pl
550         perl regcomp.pl
551         perl warning.pl
552
553 # Extensions:
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.
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
564         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
565
566 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
567         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
568
569 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
570         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
571
572 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
573         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
574
575 clean:          _tidy _mopup
576
577 realclean:      _cleaner _mopup
578         @echo "Note that make realclean does not delete config.sh or Policy.sh"
579
580 clobber:        _cleaner _mopup
581         rm -f config.sh cppstdin Policy.sh
582
583 distclean:      clobber
584
585 # Do not 'make _mopup' directly.
586 _mopup:
587         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
588         rm -f perl.exp ext.libs
589         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
590         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
591         rm -f perl suidperl miniperl $(LIBPERL)
592
593 # Do not 'make _tidy' directly.
594 _tidy:
595         -cd pod; $(LDLIBPTH) $(MAKE) clean
596         -cd utils; $(LDLIBPTH) $(MAKE) clean
597         -cd x2p; $(LDLIBPTH) $(MAKE) clean
598         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
599         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
600         done
601         rm -f testcompile compilelog
602
603 # Do not 'make _cleaner' directly.
604 _cleaner:
605         -cd os2; rm -f Makefile
606         -cd pod; $(LDLIBPTH) $(MAKE) realclean
607         -cd utils; $(LDLIBPTH) $(MAKE) realclean
608         -cd x2p; $(LDLIBPTH) $(MAKE) realclean
609         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
610         $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
611         done
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)
613         rm -rf $(addedbyconf)
614         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
615         rm -f $(private)
616         rm -rf lib/auto
617         rm -f lib/.exists lib/*/.exists
618         rm -f h2ph.man pstruct
619         rm -rf .config
620         rm -f testcompile compilelog
621         -rmdir lib/B lib/Data lib/IO/Socket lib/IO
622
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
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.
634
635 MAKEDEPEND = Makefile makedepend
636
637 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
638         $(MAKE) depend MAKEDEPEND=
639
640 config.h: config_h.SH config.sh
641         $(SHELL) config_h.SH
642
643 # When done, touch perlmain.c so that it doesn't get remade each time.
644 depend: makedepend
645         sh ./makedepend MAKE=$(MAKE)
646         - test -s perlmain.c && touch perlmain.c
647         cd x2p; $(MAKE) depend
648
649 # Cannot postpone this until $firstmakefile is ready ;-)
650 makedepend: makedepend.SH config.sh
651         sh ./makedepend.SH
652
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)
656         cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
657
658 # Second branch is for testing without a tty or controling terminal.
659 # See t/op/stat.t
660 test check: test-prep
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
666
667 utest ucheck: test-prep
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
673
674 # For testing without a tty or controling terminal. See t/op/stat.t
675 test-notty: test-prep
676         cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
677
678 # Can't depend on lib/Config.pm because that might be where miniperl
679 # is crashing.
680 minitest: miniperl lib/re.pm
681         @echo "You may see some irrelevant test failures if you have been unable"
682         @echo "to build lib/Config.pm."
683         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
684                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
685
686 # Handy way to run perlbug -ok without having to install and run the
687 # installed perlbug. We don't re-run the tests here - we trust the user.
688 # Please *don't* use this unless all tests pass.
689 # If you want to report test failures, use "make nok" instead.
690 ok:     utilities
691         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
692
693 okfile: utilities
694         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
695
696 nok:    utilities
697         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
698
699 clist:  $(c)
700         echo $(c) | tr ' ' $(TRNL) >.clist
701
702 hlist:  $(h)
703         echo $(h) | tr ' ' $(TRNL) >.hlist
704
705 shlist: $(sh)
706         echo $(sh) | tr ' ' $(TRNL) >.shlist
707
708 pllist: $(pl)
709         echo $(pl) | tr ' ' $(TRNL) >.pllist
710
711 Makefile: Makefile.SH ./config.sh
712         $(SHELL) Makefile.SH
713
714 distcheck: FORCE
715         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
716
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
722 etags:  TAGS
723
724 TAGS: emacs/cperl-mode.elc
725         sh emacs/ptags
726
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
734
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
739 $eunicefix Makefile
740 case `pwd` in
741 *SH)
742     $rm -f ../Makefile
743     $ln Makefile ../Makefile
744     ;;
745 esac
746 $rm -f $firstmakefile
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
754 case "$osname" in
755 os390|posix-bc)
756     rm -f y.tab.c y.tab.h
757     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
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
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\
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' \
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
789     if cd x2p
790     then
791         rm -f y.tab.c y.tab.h
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
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 ..
825     fi
826     ;;
827 vmesa)
828     # Do nothing in VM/ESA.
829     ;;
830 *)
831     echo "'$osname' is an EBCDIC system I don't know that well." >&4
832     ;;
833 esac
834     case "$xxx" in
835     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
836     esac
837     ;;
838 esac
839