This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Use UTF8SKIP(), from Simon Cozens.
[perl5.git] / Makefile.SH
1 #! /bin/sh
2 case $CONFIGDOTSH in
3 '')
4         if test -f config.sh; then TOP=.;
5         elif test -f ../config.sh; then TOP=..;
6         elif test -f ../../config.sh; then TOP=../..;
7         elif test -f ../../../config.sh; then TOP=../../..;
8         elif test -f ../../../../config.sh; then TOP=../../../..;
9         else
10                 echo "Can't find config.sh."; exit 1
11         fi
12         . $TOP/config.sh
13         ;;
14 esac
15 : This forces SH files to create target in same directory as SH file.
16 : This is so that make depend always knows where to find SH derivatives.
17 case "$0" in
18 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
19 esac
20
21 case "$d_dosuid" in
22 *define*) suidperl='suidperl' ;;
23 *) suidperl='';;
24 esac
25
26 linklibperl='$(LIBPERL)'
27 shrpldflags='$(LDDLFLAGS)'
28 ldlibpth=''
29 case "$useshrplib" in
30 true)
31         # Prefix all runs of 'miniperl' and 'perl' with 
32         # $ldlibpth so that ./perl finds *this* shared libperl.
33         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 # No compat3.sym here since and including the 5.004_50.
622 # No interp.sym since 5.005_03.
623 SYM  = global.sym globvar.sym perlio.sym pp.sym
624
625 SYMH = perlvars.h intrpvar.h thrdvar.h
626
627 CHMOD_W = chmod +w
628
629 # The following files are generated automatically
630 #       keywords.pl:    keywords.h
631 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
632 # [* embed.pl needs pp.sym generated by opcode.pl! *]
633 #       embed.pl:       proto.h embed.h embedvar.h global.sym objXSUB.h
634 #                       perlapi.h perlapi.c pod/perlintern.pod
635 #                       pod/perlapi.pod
636 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
637 #                       ext/B/B/Asmdata.pm
638 #       regcomp.pl:     regnodes.h
639 #       warnings.pl:    warnings.h lib/warnings.pm
640 # The correct versions should be already supplied with the perl kit,
641 # in case you don't have perl available.
642 # To force them to be regenerated, type
643 #       make regen_headers
644
645 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
646                 embed.h embedvar.h global.sym \
647                 pod/perlintern.pod pod/perlapi.pod \
648                 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
649                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
650                 warnings.h lib/warnings.pm
651
652 regen_headers:  FORCE
653         -$(CHMOD_W) $(AUTOGEN_FILES)
654         -perl keywords.pl
655         -perl opcode.pl
656         -perl embed.pl
657         -perl bytecode.pl
658         -perl regcomp.pl
659         -perl warnings.pl
660
661 regen_pods:     FORCE
662         -cd pod; $(LDLIBPTH) make regen_pods
663
664 # Extensions:
665 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
666 # automatically get built.  There should ordinarily be no need to change
667 # any of this part of makefile.
668 #
669 # The dummy dependency is a place holder in case $(dynamic_ext) or
670 # $(static_ext) is empty.
671 #
672 # DynaLoader may be needed for extensions that use Makefile.PL.
673
674 $(DYNALOADER):  miniperl preplibrary FORCE
675         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
676
677 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
678         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
679
680 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
681         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
682
683 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
684         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
685
686 clean:          _tidy _mopup
687
688 realclean:      _realcleaner _mopup
689         @echo "Note that make realclean does not delete config.sh or Policy.sh"
690
691 _clobber:
692         rm -f config.sh cppstdin Policy.sh
693
694 clobber:        _realcleaner _mopup _clobber
695
696 distclean:      clobber
697
698 # Like distclean but also removes emacs backups and *.orig.
699 veryclean:      _verycleaner _mopup _clobber
700         -@rm -f Obsolete Wanted
701
702 # Do not 'make _mopup' directly.
703 _mopup:
704         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
705         -@test -f extra.pods && rm -f `cat extra.pods`
706         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
707         -rm -f perl.exp ext.libs extra.pods opmini.o
708         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
709         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
710         rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
711
712 # Do not 'make _tidy' directly.
713 _tidy:
714         -cd pod; $(LDLIBPTH) $(MAKE) clean
715         -cd utils; $(LDLIBPTH) $(MAKE) clean
716         -cd x2p; $(LDLIBPTH) $(MAKE) clean
717         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
718         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
719         done
720         rm -f testcompile compilelog
721
722 _cleaner1:
723         -cd os2; rm -f Makefile
724         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
725         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
726         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
727         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
728         $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
729         done
730
731 _cleaner2:
732         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)
733         rm -rf $(addedbyconf)
734         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
735         rm -f $(private)
736         rm -rf lib/auto
737         rm -f lib/.exists lib/*/.exists
738         rm -f h2ph.man pstruct
739         rm -rf .config
740         rm -f testcompile compilelog
741         -rmdir lib/B lib/Data lib/Encode lib/IO/Socket lib/IO lib/Sys lib/Thread
742
743 _realcleaner: 
744         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
745         @$(LDLIBPTH) $(MAKE) _cleaner2
746
747 _verycleaner: 
748         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
749         @$(LDLIBPTH) $(MAKE) _cleaner2
750         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
751
752 # The following lint has practically everything turned on.  Unfortunately,
753 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
754 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
755 # for that spot.
756
757 lint: perly.c $(c)
758         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
759
760 # Need to unset during recursion to go out of loop.
761 # The README below ensures that the dependency list is never empty and
762 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
763
764 MAKEDEPEND = Makefile makedepend
765
766 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
767         $(MAKE) depend MAKEDEPEND=
768
769 config.h: config_h.SH config.sh
770         $(SHELL) config_h.SH
771
772 # When done, touch perlmain.c so that it doesn't get remade each time.
773 depend: makedepend
774         sh ./makedepend MAKE=$(MAKE)
775         - test -s perlmain.c && touch perlmain.c
776         cd x2p; $(MAKE) depend
777
778 # Cannot postpone this until $firstmakefile is ready ;-)
779 makedepend: makedepend.SH config.sh
780         sh ./makedepend.SH
781
782 # Cannot delegate rebuilding of t/perl to make to allow interlaced
783 # test and minitest
784 test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
785         cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
786
787 # Second branch is for testing without a tty or controling terminal.
788 # See t/op/stat.t
789 test check: test-prep
790         if (true </dev/tty) >/dev/null 2>&1; then \
791           cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
792         else \
793           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
794         fi
795         @echo "Ran tests" > t/rantests
796
797 utest ucheck: test-prep
798         if (true </dev/tty) >/dev/null 2>&1; then \
799           cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
800         else \
801           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
802         fi
803
804 # For testing without a tty or controling terminal. See t/op/stat.t
805 test-notty: test-prep
806         cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
807
808 # Can't depend on lib/Config.pm because that might be where miniperl
809 # is crashing.
810 minitest: miniperl lib/re.pm
811         @echo "You may see some irrelevant test failures if you have been unable"
812         @echo "to build lib/Config.pm."
813         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
814                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
815
816 # Handy way to run perlbug -ok without having to install and run the
817 # installed perlbug. We don't re-run the tests here - we trust the user.
818 # Please *don't* use this unless all tests pass.
819 # If you want to report test failures, use "make nok" instead.
820 ok:     utilities
821         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
822
823 okfile: utilities
824         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
825
826 nok:    utilities
827         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
828
829 nokfile:        utilities
830         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
831
832 clist:  $(c)
833         echo $(c) | tr ' ' $(TRNL) >.clist
834
835 hlist:  $(h)
836         echo $(h) | tr ' ' $(TRNL) >.hlist
837
838 shlist: $(sh)
839         echo $(sh) | tr ' ' $(TRNL) >.shlist
840
841 pllist: $(pl)
842         echo $(pl) | tr ' ' $(TRNL) >.pllist
843
844 Makefile: Makefile.SH ./config.sh
845         $(SHELL) Makefile.SH
846
847 distcheck: FORCE
848         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
849
850 elc:    emacs/cperl-mode.elc
851
852 emacs/cperl-mode.elc: emacs/cperl-mode.el
853         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
854
855 etags:  TAGS
856
857 TAGS: emacs/cperl-mode.elc
858         sh emacs/ptags
859
860 ctags:  tags
861
862 # Let's hope make will not go into an infinite loop on case-unsensitive systems
863 # This may also fail if . is in the head of the path, since perl will
864 # require -Ilib
865 tags:   TAGS
866         perl emacs/e2ctags.pl TAGS > tags
867
868 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
869 # If this runs make out of memory, delete /usr/include lines.
870 !NO!SUBS!
871
872 $eunicefix Makefile
873 case `pwd` in
874 *SH)
875     $rm -f ../Makefile
876     $ln Makefile ../Makefile
877     ;;
878 esac
879 $rm -f $firstmakefile
880
881 # Now do any special processing required before building.
882
883 case "$ebcdic" in
884 $define)
885     xxx=''
886     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
887 case "$osname" in
888 os390|posix-bc)
889     rm -f y.tab.c y.tab.h
890     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
891     yacc -d perly.y >/dev/null 2>&1
892     if cmp -s y.tab.c perly.c; then
893         rm -f y.tab.c
894     else
895         echo "perly.y -> perly.c" >&2
896         mv -f y.tab.c perly.c
897         chmod u+w perly.c
898         sed -e '/^#include "perl\.h"/a\
899 \
900 #define yydebug    PL_yydebug\
901 #define yynerrs    PL_yynerrs\
902 #define yyerrflag  PL_yyerrflag\
903 #define yychar     PL_yychar\
904 #define yyval      PL_yyval\
905 #define yylval     PL_yylval'                           \
906             -e '/YYSTYPE *yyval;/D'                     \
907             -e '/YYSTYPE *yylval;/D'                    \
908             -e '/int  yychar,/,/yynerrs;/D'             \
909             -e 's/int yydebug = 0;/yydebug = 0;/'       \
910             -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
911             -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
912             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
913         xxx="$xxx perly.c"
914     fi
915     if cmp -s y.tab.h perly.h; then
916         rm -f y.tab.h
917     else
918         echo "perly.y -> perly.h" >&2
919         mv -f y.tab.h perly.h
920         xxx="$xxx perly.h"
921     fi
922     if cd x2p
923     then
924         rm -f y.tab.c y.tab.h
925         case "$osname" in
926         posix-bc)
927            # we are using two different yaccs in BS2000 Posix!
928            byacc a2p.y >/dev/null 2>&1
929            ;;
930         *) # e.g. os390
931            yacc  a2p.y >/dev/null 2>&1
932            ;;
933         esac
934         if cmp -s y.tab.c a2p.c
935         then
936             rm -f y.tab.c
937         else
938             echo "a2p.y -> a2p.c" >&2
939             mv -f y.tab.c a2p.c
940             chmod u+w a2p.c
941             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
942                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
943             xxx="$xxx a2p.c"
944         fi
945         # In case somebody yacc -d:ed the a2p.y.
946         if test -f y.tab.h
947         then
948             if cmp -s y.tab.h a2p.h
949             then
950                 rm -f y.tab.h
951             else
952                 echo "a2p.h -> a2p.h" >&2
953                 mv -f y.tab.h a2p.h
954                 xxx="$xxx a2p.h"
955             fi
956         fi
957         cd ..
958     fi
959     ;;
960 vmesa)
961     # Do nothing in VM/ESA.
962     ;;
963 *)
964     echo "'$osname' is an EBCDIC system I don't know that well." >&4
965     ;;
966 esac
967     case "$xxx" in
968     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
969     esac
970     ;;
971 esac
972