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