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