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