This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make vmsify support files with no directory component.
[perl5.git] / Cross / Makefile-cross-SH
CommitLineData
8ed6d636
VK
1#! /bin/sh
2
3# This file is used to create generic Makefile for cross-compile
4# (borrowed from Makefile.SH)
5# (now only small changes are done to establish cross-compilation)
6# miniperl removed from here, as this is built on HOST
7
8Makefile=Makefile-cross-$CROSS_NAME
9
10. Cross/config-${CROSS_NAME}.sh
11
12# H.Merijn Brand [17 Feb 2004]
13# This comment is just to ensure that Configure will find variables that
14# are removed/replaced in patches on blead, but are still needed in the
8534470b 15# 5.8.x, 5.6.x and 5.005.x maintenance tracks.
8ed6d636
VK
16# metaconfig -m will scan all .SH files on this level (not deeper), and
17# not in x2p and other subfolders. This file is as good as any .SH
18# patch references
19# #22227 $baserev
20# #22302 $yacc $byacc
21
22# H.Merijn Brand [30 Oct 2004]
23# Mentioned for the same reason for future reference
24# #23434 $d_strlcat $d_strlcpy
25
26: This forces SH files to create target in same directory as SH file.
27: This is so that make depend always knows where to find SH derivatives.
28case "$0" in
29*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
30esac
31
8ed6d636
VK
32linklibperl='$(LIBPERL)'
33shrpldflags='$(LDDLFLAGS)'
34ldlibpth=''
35DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
36case "$useshrplib" in
37true)
38 # Prefix all runs of 'miniperl' and 'perl' with
39 # $ldlibpth so that ./perl finds *this* shared libperl.
40 case "$LD_LIBRARY_PATH" in
41 '')
42 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
43 *)
44 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
45 esac
46
47 pldlflags="$cccdlflags"
3b333d01 48 static_ldflags=''
8ed6d636
VK
49 case "${osname}${osvers}" in
50 next4*)
51 ld=libtool
52 lddlflags="-dynamic -undefined warning -framework System \
53 -compatibility_version 1 -current_version $patchlevel \
54 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
55 ;;
7eb35c03 56 darwin*)
8ed6d636
VK
57 shrpldflags="${ldflags} -dynamiclib \
58 -compatibility_version \
59 ${api_revision}.${api_version}.${api_subversion} \
60 -current_version \
61 ${revision}.${patchlevel}.${subversion} \
62 -install_name \$(shrpdir)/\$@"
63 ;;
64 cygwin*)
65 linklibperl="-lperl"
66 ;;
67 sunos*)
68 linklibperl="-lperl"
69 ;;
70 netbsd*|freebsd[234]*|openbsd*|dragonfly*)
71 linklibperl="-L. -lperl"
72 ;;
73 interix*)
74 linklibperl="-L. -lperl"
75 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
76 ;;
77 linux*)
78 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
79 ;;
80 aix*)
81 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
82 case "$osvers" in
83 3*) shrpldflags="$shrpldflags -e _nostart"
84 ;;
85 *) shrpldflags="$shrpldflags -b noentry"
86 ;;
87 esac
88 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
89 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
90 ;;
91 hpux*)
92 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
93 ;;
94 os390*)
95 shrpldflags='-W l,XPLINK,dll'
96 linklibperl='libperl.x'
97 DPERL_EXTERNAL_GLOB=''
98 ;;
99 esac
100 case "$ldlibpthname" in
101 '') ;;
102 *)
103 case "$osname" in
104 os2)
105 ldlibpth=''
106 ;;
107 *)
108 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
109 ;;
110 esac
111 # Strip off any trailing :'s
112 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
113 ;;
114 esac
115
116 case "$ldlibpth" in
117 # Protect any spaces
118 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
119 esac
120
121 case "$osname" in
122 linux)
123 # If there is a pre-existing $libperl from a previous
124 # installation, Linux needs to use LD_PRELOAD to
125 # override the LD_LIBRARY_PATH setting. See the
126 # INSTALL file, under "Building a shared perl library".
127 # If there is no pre-existing $libperl, we don't need
128 # to do anything further.
129 if test -f $archlib/CORE/$libperl; then
130 rm -f preload
131 cat <<'EOT' > preload
132#! /bin/sh
133lib=$1
134shift
135test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
136exec "$@"
137EOT
138 chmod 755 preload
139 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
140 fi
141 ;;
142 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
143 ;;
144 esac
145
146 ;;
147
148*) pldlflags=''
3b333d01 149 static_ldflags='CCCDLFLAGS='
8ed6d636
VK
150 ;;
151esac
152
153: Prepare dependency lists for Makefile.
154dynamic_list=' '
155extra_dep=''
156for f in $dynamic_ext; do
157 : the dependency named here will never exist
158 base=`echo "$f" | sed 's/.*\///'`
159 this_target="lib/auto/$f/$base.$dlext"
160 dynamic_list="$dynamic_list $this_target"
161
162 : Parallel makes reveal that we have some interdependencies
163 case $f in
164 Math/BigInt/FastCalc) extra_dep="$extra_dep
165$this_target: lib/auto/List/Util/Util.$dlext" ;;
166 Unicode/Normalize) extra_dep="$extra_dep
167$this_target: uni.data" ;;
168 esac
169done
170
171static_list=' '
172for f in $static_ext; do
173 base=`echo "$f" | sed 's/.*\///'`
174 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
175done
176
177nonxs_list=' '
178for f in $nonxs_ext; do
179 base=`echo "$f" | sed 's/.*\///'`
180 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
181done
182
183echo "Extracting $Makefile (with variable substitutions)"
184$spitshell >$Makefile <<!GROK!THIS!
185# $Makefile.SH
186# This file is derived from $Makefile.SH. Any changes made here will
187# be lost the next time you run Configure.
188# $Makefile is used to generate $firstmakefile. The only difference
189# is that $firstmakefile has the dependencies filled in at the end.
190
191CC = $cc
192LD = $ld
193
194LDFLAGS = $ldflags
195CLDFLAGS = $ldflags
196
197mallocsrc = $mallocsrc
198mallocobj = $mallocobj
199madlysrc = $madlysrc
200madlyobj = $madlyobj
201LNS = $lns
202# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
203CPS = $cp
204RMS = rm -f
205ranlib = $ranlib
206
207# The following are mentioned only to make metaconfig include the
208# appropriate questions in Configure. If you want to change these,
209# edit config.sh instead, or specify --man1dir=/wherever on
210# installman commandline.
211bin = $installbin
212scriptdir = $scriptdir
213shrpdir = $archlibexp/CORE
214privlib = $installprivlib
215man1dir = $man1dir
216man1ext = $man1ext
217man3dir = $man3dir
218man3ext = $man3ext
219
220# The following are used to build and install shared libraries for
221# dynamic loading.
222LDDLFLAGS = $lddlflags
223SHRPLDFLAGS = $shrpldflags
224CCDLFLAGS = $ccdlflags
225DLSUFFIX = .$dlext
226PLDLFLAGS = $pldlflags
227LIBPERL = $libperl
228LLIBPERL= $linklibperl
229SHRPENV = $shrpenv
230
231# Static targets are ordinarily built without CCCDLFLAGS. However,
232# if building a shared libperl.so that might later be linked into
233# another application, then it might be appropriate to also build static
234# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
3b333d01
NC
235# for GNU cc).
236STATIC_LDFLAGS = $static_ldflags
8ed6d636
VK
237
238# The following is used to include the current directory in
239# the dynamic loader path you are building a shared libperl.
240LDLIBPTH = $ldlibpth
241
242dynamic_ext = $dynamic_list
243static_ext = $static_list
244nonxs_ext = $nonxs_list
245ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
246DYNALOADER = DynaLoader\$(OBJ_EXT)
247
248libs = $perllibs $cryptlib
249
cc69b689 250public = perl\$(EXE_EXT) utilities translators
8ed6d636
VK
251
252shellflags = $shellflags
253
254# This is set to MAKE=$make if your $make command doesn't
255# do it for you.
256$make_set_make
257
258# Mention $gmake here so it gets probed for by Configure.
259
260# These variables may need to be manually set for non-Unix systems.
261AR = $full_ar
262EXE_EXT = $_exe
263LIB_EXT = $_a
264OBJ_EXT = $_o
265PATH_SEP = $p_
266
267# If you're going to use valgrind and it can't be invoked as plain valgrind
268# then you'll need to change this, or override it on the make command line.
269VALGRIND=valgrind
270
271FIRSTMAKEFILE = $firstmakefile
272
273# Any special object files needed by this architecture, e.g. os2/os2.obj
274ARCHOBJS = $archobjs
275
276.SUFFIXES: .c \$(OBJ_EXT) .i .s
277
278# grrr
279SHELL = $sh
280
281# how to tr(anslate) newlines
282TRNL = '$trnl'
283
284OPTIMIZE = $optimize
285
286EXTRAS = $extras
287
288INSTALLPREFIXEXP = $prefix
289
290!GROK!THIS!
291# not used by Makefile but by installperl;
292# mentioned here so that metaconfig picks these up
293# $installusrbinperl
294# $versiononly
295
296case "${osname}:${osvers}" in
297darwin:*)
298$spitshell >>$Makefile <<EOF
299
300# Your locales are broken (osname $osname, osvers $osvers)
301# and to avoid the numerous
302# perl: warning: Setting locale failed.
303# warnings during the build process we reset the locale variables.
304
305LC_ALL=C
306LANG=C
307LANGUAGE=C
308EOF
309 ;;
310esac
311
312$spitshell >>$Makefile <<!GROK!THIS!
313CROSS_NAME = ${CROSS_NAME}
314CROSS_LIB = xlib/${CROSS_NAME}
315
316CCCMD = \`sh \$(shellflags) cflags-cross-${CROSS_NAME} "optimize='\$(OPTIMIZE)'" \$@\`
317
318CCCMDSRC = \`sh \$(shellflags) cflags-cross-${CROSS_NAME} "optimize='\$(OPTIMIZE)'" \$<\`
319
320!GROK!THIS!
321
322## In the following dollars and backticks do not need the extra backslash.
323$spitshell >>$Makefile <<'!NO!SUBS!'
324
608969de 325CONFIGPM = xlib/$(CROSS_NAME)/Config.pm
8ed6d636 326
5e4c4c91 327private = preplibrary $(CONFIGPM) $(CROSS_LIB)/Config.pod lib/buildcustomize.pl
8ed6d636 328
cbeaa189 329shextract = Makefile cflags config.h makedepend \
8ed6d636
VK
330 makedir myconfig writemain pod/Makefile
331
467132b9 332addedbyconf = UU $(shextract) lib/lib.pm pstruct
8ed6d636
VK
333
334# Unicode data files generated by mktables
3df51b85
KW
335unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
336 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
1a234f2b 337 lib/unicore/UCD.pl lib/unicore/Name.pm \
3e344d15 338 lib/unicore/Heavy.pl lib/unicore/mktables.lst
8ed6d636
VK
339
340# Directories of Unicode data files generated by mktables
341unidatadirs = lib/unicore/To lib/unicore/lib
342
343h1 = EXTERN.h INTERN.h XSUB.h av.h xconfig.h cop.h cv.h dosish.h
344h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
345h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
346h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
347h5 = utf8.h warnings.h
348h = $(h1) $(h2) $(h3) $(h4) $(h5)
349
350c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro.c perl.c
351c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
26ea9e12 352c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
8ed6d636
VK
353c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c
354c5 = $(madlysrc) $(mallocsrc)
355
356c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c perlmain.c opmini.c
357
358obj1 = $(madlyobj) $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro$(OBJ_EXT)
359obj2 = hv$(OBJ_EXT) av$(OBJ_EXT) perl$(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)
48462a74 360obj3 = 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) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) mathoms$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
8ed6d636
VK
361
362obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
363
364lintflags = \
365 -b \
366 -n \
367 -p \
368 -Ncheck=%all \
369 -Nlevel=4 \
370 -errchk=parentheses \
371 -errhdr=%all \
372 -errfmt=src \
373 -errtags \
374 -erroff=E_ASSIGN_NARROW_CONV \
375 -erroff=E_BAD_PTR_CAST \
376 -erroff=E_BAD_PTR_CAST_ALIGN \
377 -erroff=E_BAD_PTR_INT_COMBINATION \
378 -erroff=E_BAD_SIGN_EXTEND \
379 -erroff=E_BLOCK_DECL_UNUSED \
380 -erroff=E_CASE_FALLTHRU \
381 -erroff=E_CONST_EXPR \
382 -erroff=E_CONSTANT_CONDITION \
383 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
384 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
385 -erroff=E_EXPR_NULL_EFFECT \
386 -erroff=E_FALSE_LOGICAL_EXPR \
387 -erroff=E_INCL_NUSD \
388 -erroff=E_LOOP_EMPTY \
389 -erroff=E_MAIN_PARAM \
390 -erroff=E_POINTER_TO_OBJECT \
391 -erroff=E_PTRDIFF_OVERFLOW \
392 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
393 -erroff=E_STATIC_UNUSED \
394 -erroff=E_TRUE_LOGICAL_EXPR
395
396splintflags = \
397 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
398 -D__builtin_va_list=va_list \
399 -Dsigjmp_buf=jmp_buf \
400 -warnposix \
401 \
402 +boolint \
403 +charintliteral \
404 -fixedformalarray \
405 -mustfreefresh \
406 -nestedextern \
407 -predboolint \
408 -predboolothers \
409 -preproc \
410 -boolops \
411 -shadow \
412 -nullstate \
413 +longintegral \
414 +matchanyintegral \
415 -type \
416 \
417 +line-len 999 \
418 +weak
419
420splintfiles = $(c1)
421
422.c$(OBJ_EXT):
423 $(CCCMD) -I$(CROSS_LIB) $(PLDLFLAGS) $*.c
424
425.c.i:
426 $(CCCMDSRC) -E $*.c > $*.i
427
428.c.s:
429 $(CCCMDSRC) -S $*.c
430
431all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
432 @echo " ";
433 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
434
435.PHONY: all
436
437
438# This is now done by installman only if you actually want the man pages.
439# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
440
441# Phony target to force checking subdirectories.
442# Apparently some makes require an action for the FORCE target.
443.PHONY: FORCE
444FORCE:
445 @sh -c true
446!NO!SUBS!
447$spitshell >>$Makefile <<!GROK!THIS!
448
449# We do a copy of the op.c instead of a symlink because gcc gets huffy
450# if we have a symlink forest to another disk (it complains about too many
451# levels of symbolic links, even if we have only two)
452
453opmini.c: op.c
454 \$(RMS) opmini.c
455 \$(CPS) op.c opmini.c
456
457opmini\$(OBJ_EXT): opmini.c
458 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
459
460globals\$(OBJ_EXT):
461
462!GROK!THIS!
463$spitshell >>$Makefile <<'!NO!SUBS!'
464miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
465 $(CCCMD) $(PLDLFLAGS) $*.c
466
467perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
468 sh writemain $(DYNALOADER) $(static_ext) > perlmain.c
469
470!NO!SUBS!
471case "$osname" in
472cygwin)
473 ;; # Let cygwin/Makefile.SHs do its work.
474*)
475 $spitshell >>$Makefile <<'!NO!SUBS!'
476perlmain$(OBJ_EXT): perlmain.c
477 $(CCCMD) $(PLDLFLAGS) $*.c
478
479!NO!SUBS!
480 ;;
481esac
482$spitshell >>$Makefile <<'!NO!SUBS!'
483# The file ext.libs is a list of libraries that must be linked in
484# for static extensions, e.g. -lm -lgdbm, etc. The individual
485# static extension Makefile's add to it.
486ext.libs: $(static_ext)
487 -@test -f ext.libs || touch ext.libs
488
489!NO!SUBS!
490
491# How to build libperl. This is still rather convoluted.
492# Load up custom Makefile.SH fragment for shared loading and executables:
493case "$osname" in
494*)
495 Makefile_s="$osname/Makefile.SHs"
496 ;;
497esac
498
499case "$osname" in
500aix)
501 $spitshell >>$Makefile <<!GROK!THIS!
502LIBS = $perllibs
503# In AIX we need to change this for building Perl itself from
504# its earlier definition (which is for building external
505# extensions *after* Perl has been built and installed)
506CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
507
508!GROK!THIS!
509 case "$useshrplib" in
510 define|true|[yY]*)
511 $spitshell >>$Makefile <<'!NO!SUBS!'
512
513LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
514MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
515
516$(LIBPERL_NONSHR): $(obj)
517 $(RMS) $(LIBPERL_NONSHR)
518 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
519
520$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
521 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
522 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
523
524MINIPERLEXP = $(MINIPERL_NONSHR)
525
526LIBPERLEXPORT = perl.exp
527
528!NO!SUBS!
529
530 ;;
531 *)
532 $spitshell >>$Makefile <<'!NO!SUBS!'
533MINIPERLEXP = miniperl$(EXE_EXT)
534
535PERLEXPORT = perl.exp
536
537!NO!SUBS!
538 ;;
539 esac
540 $spitshell >>$Makefile <<'!NO!SUBS!'
541perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
542 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp
543
544!NO!SUBS!
545 ;;
546os2)
547 $spitshell >>$Makefile <<'!NO!SUBS!'
548MINIPERLEXP = miniperl
549
550perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
551 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
552
553!NO!SUBS!
554 ;;
555esac
556
557if test -r $Makefile_s ; then
558 . $Makefile_s
559 $spitshell >>$Makefile <<!GROK!THIS!
560
561$Makefile: $Makefile_s
562!GROK!THIS!
563else
564 $spitshell >>$Makefile <<'!NO!SUBS!'
565$(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
566!NO!SUBS!
567 case "$useshrplib" in
568 true)
569 $spitshell >>$Makefile <<'!NO!SUBS!'
570 rm -f $@
571 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
572!NO!SUBS!
573 case "$osname" in
574 aix)
575 $spitshell >>$Makefile <<'!NO!SUBS!'
576 rm -f libperl$(OBJ_EXT)
577 mv $@ libperl$(OBJ_EXT)
578 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
579!NO!SUBS!
580 ;;
581 esac
582 ;;
583 *)
584 $spitshell >>$Makefile <<'!NO!SUBS!'
585 rm -f $(LIBPERL)
586 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
587 @$(ranlib) $(LIBPERL)
588!NO!SUBS!
589 ;;
590 esac
591 $spitshell >>$Makefile <<'!NO!SUBS!'
592
593# How to build executables.
594
595# The $& notation tells Sequent machines that it can do a parallel make,
596# and is harmless otherwise.
597# The miniperl -w -MExporter line is a basic cheap test to catch errors
598# before make goes on to run preplibrary and then MakeMaker on extensions.
599# This is very handy because later errors are often caused by miniperl
600# build problems but that's not obvious to the novice.
601# The Module used here must not depend on Config or any extensions.
602
603!NO!SUBS!
604
605
606 $spitshell >>$Makefile <<'!NO!SUBS!'
607
608perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
609 -@rm -f miniperl.xok
610 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX)dyn$(EXE_EXT) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
611 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX)$(EXE_EXT) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
612
613# Purify/Quantify Perls.
614
615pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
616 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
617
618purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
619 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
620
621quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
622 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
623
624# Valgrind perl (currently Linux only)
625
626perl.valgrind.config: config.sh
627 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
628 @$(MAKE) perl.config.dashg
629 @echo "Checking usemymalloc='n' in config.sh..."
630 @grep "^usemymalloc=" config.sh
631 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
632 @echo "And of course you have to have valgrind..."
633 $(VALGRIND) ./perl -e 1 2>/dev/null || exit 1
634
635# Third Degree Perl (Tru64 only)
636
637perl.config.dashg:
638 @echo "Checking optimize='-g' in config.sh..."
639 @grep "^optimize=" config.sh
640 @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
641
642perl.third.config: config.sh
643 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
644 @$(MAKE) perl.config.dashg
645 @echo "Checking usemymalloc='n' in config.sh..."
646 @grep "^usemymalloc=" config.sh
647 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
648
649perl.third: /usr/bin/atom perl.third.config perl
650 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
651 @echo "Now you may run perl.third and then study perl.3log."
652
653# Pixie Perls (Tru64 and IRIX only)
654
655perl.pixie.config: config.sh
656 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
657 @$(MAKE) perl.config.dashg
658
659perl.pixie.atom: /usr/bin/atom perl
660 atom -tool pixie -L. -all -toolargs="-quiet" perl
661
662perl.pixie.irix: perl
663 pixie perl
664
665perl.pixie: /usr/bin/pixie perl.pixie.config perl
666 if test -x /usr/bin/atom; then \
667 $(MAKE) perl.pixie.atom; \
668 else \
669 $(MAKE) perl.pixie.irix; \
670 fi
671 @echo "Now you may run perl.pixie and then run pixie."
672
673# Gprof Perl
674
675perl.config.dashpg:
676 @echo "Checking optimize='-pg' in config.sh..."
677 @grep "^optimize=" config.sh
678 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
679
680perl.gprof.config: config.sh
681 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
682 @$(MAKE) perl.config.dashpg
683
684perl.gprof: /usr/bin/gprof perl.gprof.config
685 @-rm -f perl
686 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
687 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
688
689# Gcov Perl
690
691perl.config.gcov:
692 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
693 @echo "Checking gccversion in config.sh..."
694 @grep "^gccversion=" config.sh
695 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
696 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
697 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
698 @grep "^ccflags=" config.sh
699 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
700
701perl.gcov: perl.config.gcov
702 @-rm -f perl
703 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
704 @echo "Now you may run perl.gcov and then run gcov some.c."
705
706# Microperl. This is just a convenience thing if one happens to
707# build also the full Perl and therefore the real big Makefile:
708# usually one should manually explicitly issue the below command.
709
710.PHONY: microperl
711microperl:
712 $(MAKE) -f Makefile.micro
713
8ed6d636
VK
714!NO!SUBS!
715
716fi
717
718$spitshell >>$Makefile <<'!NO!SUBS!'
719
8ed6d636 720.PHONY: preplibrary
7353f64c 721preplibrary: miniperl $(CONFIGPM) lib/lib.pm $(PREPLIBRARY_LIBPERL)
8ed6d636
VK
722
723.PHONY: makeppport
724makeppport: miniperl$(EXE_EXT) $(CONFIGPM)
725 $(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib mkppport
726
727$(CROSS_LIB)/Config.pod: config.sh miniperl configpm Porting/Glossary
608969de
VK
728 $(LDLIBPTH) ./miniperl -Ilib configpm --cross=$(CROSS_NAME)
729 cp *.h $(CROSS_LIB)/
730 cp ext/re/re.pm $(LIBDIR)/
731
732$(CONFIGPM): $(CROSS_LIB)/Config.pod xconfig.h
8ed6d636
VK
733
734lib/re.pm: ext/re/re.pm
735 @-rm -f $@
736 cp ext/re/re.pm lib/re.pm
737
5e4c4c91
NC
738lib/buildcustomize.pl: $(MINIPERL_EXE) write_buildcustomize.pl
739 $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl
740
8ed6d636
VK
741unidatafiles $(unidatafiles): uni.data
742
743uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables
3df51b85
KW
744 cd lib/unicore && $(LDLIBPTH) ../../miniperl -I../../lib mktables -P ../../pod -maketest -makelist -p
745# Commented out so always runs, mktables looks at far more files than we
746# can in this makefile to decide if needs to run or not
747# touch uni.data
8ed6d636
VK
748
749extra.pods: miniperl
750 -@test ! -f extra.pods || rm -f `cat extra.pods`
751 -@rm -f extra.pods
752 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
753 nx=`echo $$x | sed -e "s/README\.//"`; \
754 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
755 echo "pod/perl"$$nx".pod" >> extra.pods ; \
756 done
757 -@rm -f pod/perlvms.pod
758 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
759 -@rm -f pod/perldelta.pod
4d7c7898 760 -@test -f pod/perl5100delta.pod && cd pod && $(LNS) perl5100delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
8ed6d636
VK
761
762extras.make: perl$(EXE_EXT)
763 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
764
765extras.test: perl$(EXE_EXT)
766 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
767
768extras.install: perl$(EXE_EXT)
769 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
770
771.PHONY: install install-strip install-all install-verbose install-silent \
772 no-install install.perl install.man install.html
773
774META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
4612967b 775 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta -y
bfc0a3e7
CBW
776
777META.json: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
4612967b 778 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta -j
8ed6d636
VK
779
780install-strip:
781 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
782
783install install-all:
784 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
785
786install-verbose:
787 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
788
789install-silent:
790 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
791
792no-install:
793 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
794
795# Set this to an empty string to avoid an attempt of rebuild before install
796INSTALL_DEPENDENCE = all
797
798install.perl: $(INSTALL_DEPENDENCE) installperl
799 $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
800 -@test ! -s extras.lst || $(MAKE) extras.install
801
802install.man: all installman
803 $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
804
805# XXX Experimental. Hardwired values, but useful for testing.
806# Eventually Configure could ask for some of these values.
807install.html: all installhtml
808 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
809 $(LDLIBPTH) ./perl installhtml \
810 --podroot=. --podpath=. --recurse \
811 --htmldir=$(privlib)/html \
812 --htmlroot=$(privlib)/html \
813 --splithead=pod/perlipc \
814 --splititem=pod/perlfunc \
e2b41a3f 815 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
8ed6d636
VK
816 --verbose
817
818
819# I now supply perly.c with the kits, so the following section is
820# used only if you force bison to run by saying
821# make regen_perly
822# You normally shouldn't remake perly.[ch].
823
824.PHONY: regen_perly
825
826run_byacc:
827 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
828
829# this outputs perly.h, perly.act and perly.tab
830regen_perly:
831 perl regen_perly.pl
832
833# We don't want to regenerate perly.c and perly.h, but they might
834# appear out-of-date after a patch is applied or a new distribution is
835# made.
836perly.c: perly.y
837 -@sh -c true
838
839perly.h: perly.y
840 -@sh -c true
841
d500e60d 842SYM = globvar.sym perlio.sym
8ed6d636
VK
843
844SYMH = perlvars.h intrpvar.h
845
846CHMOD_W = chmod +w
847
848# The following files are generated automatically
d500e60d 849# embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
897d3989 850# opcode.pl: opcode.h opnames.h pp_proto.h
8ed6d636
VK
851# regcomp.pl: regnodes.h
852# warnings.pl: warnings.h lib/warnings.pm
f2c01b15 853# feature.pl: feature.h lib/feature.pl
8ed6d636
VK
854# The correct versions should be already supplied with the perl kit,
855# in case you don't have perl available.
856# To force them to be regenerated, run
857# perl regen.pl
858# with your existing copy of perl
859# (make regen_headers is kept for backwards compatibility)
860
d500e60d 861AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
69bcf1d3 862 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
f2c01b15 863 lib/feature.pm feature.h
8ed6d636 864
1e2f36ef 865.PHONY: regen_headers regen_all
8ed6d636
VK
866
867regen regen_headers: FORCE
868 -perl regen.pl
869
1e2f36ef 870regen_all: regen
8ed6d636
VK
871
872.PHONY: manisort manicheck
873
874manisort: FORCE
875 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
876 LC_ALL=C sort -fdo MANIFEST MANIFEST)
877
878manicheck: FORCE
879 perl Porting/manicheck
880
881# Extensions:
882# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
883# automatically get built. There should ordinarily be no need to change
884# any of this part of makefile.
885#
886# The dummy dependency is a place holder in case $(dynamic_ext) or
887# $(static_ext) is empty.
888#
889# DynaLoader may be needed for extensions that use Makefile.PL.
890
891###$(DYNALOADER).c: $(EXTDIR)/DynaLoader/dl_dld.xs $(CONFIGPM)
892### if not exist $(AUTODIR) mkdir $(AUTODIR)
893### cd $(EXTDIR)\$(*B)
894### $(HPERL) -I..\..\lib -MCross=$(CROSS_NAME) $(*B)_pm.PL
895### $(HPERL) -I..\..\lib -MCross=$(CROSS_NAME) XSLoader_pm.PL
896### cd ..\..\win32
897### $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
898### $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
899### cd $(EXTDIR)\$(*B)
900### $(XSUBPP) dl_win32.xs > $(*B).c
901### cd ..\..\win32
902###
903###$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
904### $(COPY) dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
905
906
907
5e4c4c91 908$(DYNALOADER): lib/buildcustomize.pl preplibrary FORCE
3b333d01 909 @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
8ed6d636 910
5e4c4c91 911d_dummy $(dynamic_ext): miniperl$(EXE_EXT) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
3b333d01 912 @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
8ed6d636 913
5e4c4c91 914s_dummy $(static_ext): miniperl$(EXE_EXT) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
3b333d01 915 @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
8ed6d636 916
5e4c4c91 917n_dummy $(nonxs_ext): miniperl$(EXE_EXT) lib/buildcustomize.pl preplibrary $(DYNALOADER) FORCE
3b333d01 918 @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
8ed6d636
VK
919!NO!SUBS!
920
921$spitshell >>$Makefile <<EOF
922$extra_dep
923EOF
924
925$spitshell >>$Makefile <<'!NO!SUBS!'
926
927.PHONY: printconfig
928printconfig:
929 @eval `$(LDLIBPTH) ./perl -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
930
931.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
932 realclean _realcleaner clobber _clobber \
6e2cec71 933 distclean veryclean _verycleaner
8ed6d636 934
6e2cec71 935clean: _tidy _mopup
8ed6d636 936
6e2cec71 937realclean: _realcleaner _mopup
8ed6d636
VK
938 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
939
940_clobber:
941 -@rm -f Cross/run-* Cross/to-* Cross/from-*
942 rm -f config.sh cppstdin Policy.sh extras.lst
943
6e2cec71 944clobber: _realcleaner _mopup _clobber
8ed6d636
VK
945
946distclean: clobber
947
948# Like distclean but also removes emacs backups and *.orig.
949veryclean: _verycleaner _mopup _clobber
950 -@rm -f Obsolete Wanted
951
952# Do not 'make _mopup' directly.
953_mopup:
954 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c uudmap.h generate_uudmap$(EXE_EXT)
955 -rmdir .depending
956 -@test -f extra.pods && rm -f `cat extra.pods`
957 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
958 -rm -f perl.exp ext.libs extra.pods uni.data opmini.o
959 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
960 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
961 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
962 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
963 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
ce0286c6 964 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
cc69b689 965 -rm -f perl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
8ed6d636
VK
966 -rm -f config.over
967
968# Do not 'make _tidy' directly.
969_tidy:
970 -cd pod; $(LDLIBPTH) $(MAKE) clean
971 -cd utils; $(LDLIBPTH) $(MAKE) clean
972 -cd x2p; $(LDLIBPTH) $(MAKE) clean
973 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
3b333d01 974 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
8ed6d636
VK
975 done
976
977_cleaner1:
978 -cd os2; rm -f Makefile
979 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
980 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
981 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
3b333d01
NC
982 -@if test -f miniperl$(EXE_EXT) ; then \
983 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
984 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
985 done ; \
986 else \
987 sh $(CLEAN).sh ; \
988 fi
989 rm -f realclean.sh veryclean.sh
8ed6d636
VK
990 -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib mkppport --clean
991
992# Some systems do not support "?", so keep these files separate.
993_cleaner2:
994 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
995 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
f18bc4a8
NC
996 rm -f t/perl$(EXE_EXT) t/rantests
997 rm -rf t/tmp*
8ed6d636
VK
998 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
999 rm -rf $(addedbyconf)
1000 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1001 rm -f $(private)
1002 rm -rf $(unidatafiles) $(unidatadirs)
1003 rm -rf lib/auto
1004 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1005 rm -f h2ph.man pstruct
1006 rm -rf .config
1007 rm -f preload
1008 rm -rf lib/Encode lib/Compress lib/Hash lib/re
1009 rm -rf lib/IO/Compress lib/IO/Uncompress
1010 rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1011 rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1012 rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1013 -rmdir lib/B lib/Data
1014 -rmdir lib/Filter/Util lib/IO/Socket
1015 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1016 -rmdir lib/threads lib/XS
1017
1018_realcleaner:
1019 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1020 @$(LDLIBPTH) $(MAKE) _cleaner2
1021
1022_verycleaner:
1023 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1024 @$(LDLIBPTH) $(MAKE) _cleaner2
1025 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1026
1027.PHONY: lint
1028lint: $(c)
1029 rm -f *.ln
1030 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1031
1032.PHONY: splint
1033splint: $(c)
1034 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1035
1036# Need to unset during recursion to go out of loop.
1037# The README below ensures that the dependency list is never empty and
1038# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1039
1040MAKEDEPEND = Makefile makedepend
1041
1042$(FIRSTMAKEFILE): README $(MAKEDEPEND)
1043 $(MAKE) depend MAKEDEPEND=
1044
1045config.h: config_h.SH config.sh
1046 $(SHELL) config_h.SH
1047 # TODO - improve following line
1048 cp config.h $(CROSS_LIB)/
1049
1050xconfig.h: config_h.SH Cross/config-$(CROSS_NAME).sh
1051 CONFIG_SH=Cross/config-$(CROSS_NAME).sh CONFIG_H=xconfig.h $(SHELL) config_h.SH
608969de 1052 #TODO $(LDLIBPTH) ./miniperl -Ilib -MCross=$(CROSS_NAME) config_h.PL "INST_VER=$(INST_VER)" "CORE_DIR=$(CROSS_LIB)" "CONFIG_H=xconfig.h"
8ed6d636 1053 cp xconfig.h $(CROSS_LIB)/
608969de 1054 cp xconfig.h $(CROSS_LIB)/config.h
8ed6d636
VK
1055
1056# When done, touch perlmain.c so that it doesn't get remade each time.
1057.PHONY: depend
1058depend: makedepend
1059 sh ./makedepend MAKE=$(MAKE)
1060 - test -s perlmain.c && touch perlmain.c
1061 cd x2p; $(MAKE) depend
1062
1063# Cannot postpone this until $firstmakefile is ready ;-)
1064makedepend: makedepend.SH config.sh
1065 sh ./makedepend.SH
1066
1067.PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1068 test_tty test-tty _test_tty test_notty test-notty _test_notty \
1069 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1070 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1071 test.third check.third utest.third ucheck.third test_notty.third \
1072 test.deparse test_notty.deparse test_harness test_harness_notty \
1073 minitest coretest test.taintwarn
1074
1075# Cannot delegate rebuilding of t/perl to make
1076# to allow interlaced test and minitest
1077
1078TESTFILE=TEST
1079
6e2cec71 1080_test_prep:
8ed6d636
VK
1081 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1082
1083# Architecture-neutral stuff:
1084
1085test_prep_pre: preplibrary utilities $(nonxs_ext)
1086
9f417383
NC
1087test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) \
1088 $(dynamic_ext) $(TEST_PERL_DLL) x2p/s2p x2p/find2perl
8ed6d636
VK
1089 PERL=./perl $(MAKE) _test_prep
1090
1091_test_tty:
1092 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1093
1094_test_notty:
1095 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1096
8ed6d636
VK
1097# The second branch is for testing without a tty or controlling terminal,
1098# see t/op/stat.t
1099_test:
1100 if (true </dev/tty) >/dev/null 2>&1; then \
1101 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
1102 else \
1103 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1104 fi
1105 @echo "Ran tests" > t/rantests
1106
1107test check: test_prep
1108 PERL=./perl $(MAKE) _test
1109
1110test_tty: test_prep
1111 PERL=./perl $(MAKE) _test_tty
1112
1113test_notty: test_prep
1114 PERL=./perl $(MAKE) _test_notty
1115
1116utest ucheck test.utf8 check.utf8: test_prep
1117 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1118
1119coretest: test_prep
1120 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1121
1122test-prep: test_prep
1123
1124test-tty: test_tty
1125
1126test-notty: test_notty
1127
1128# Torture testing
1129
1130test.torture torturetest: test_prep
1131 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1132
1133# Targets for UTF16 testing:
1134
1135minitest.utf16: minitest.prep
1136 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
115e9681 1137 && $(LDLIBPTH) ./perl TEST -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
8ed6d636
VK
1138
1139test.utf16 check.utf16: test_prep
1140 PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1141
1142utest.utf16 ucheck.utf16: test_prep
1143 PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1144
1145# Targets for valgrind testing:
1146
1147test_prep.valgrind: test_prep perl.valgrind
1148 PERL=./perl $(MAKE) _test_prep
1149
1150test.valgrind check.valgrind: test_prep perl.valgrind.config
1151 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(MAKE) _test
1152
1153utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1154 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1155
1156test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1157 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1158
1159# Targets for Third Degree testing.
1160
1161test_prep.third: test_prep perl.third
1162 PERL=./perl.third $(MAKE) _test_prep
1163
1164test.third check.third: test_prep.third perl.third
1165 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1166
1167utest.third ucheck.third: test_prep.third perl.third
1168 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1169
1170test_notty.third: test_prep.third perl.third
1171 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1172
1173# Targets for Deparse testing.
1174
1175test.deparse: test_prep
1176 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1177
1178test_notty.deparse: test_prep
1179 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1180
1181# Targets to run the test suite with -t
1182
1183test.taintwarn: test_prep
1184 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1185
1186minitest.prep:
1187 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1188 $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
1189 @echo " "
1190 @echo "You may see some irrelevant test failures if you have been unable"
1191 @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
1192 @echo " "
1193
1194# Can't depend on lib/Config.pm because that might be where miniperl
1195# is crashing.
7353f64c 1196minitest: miniperl$(EXE_EXT) minitest.prep
8ed6d636 1197 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
115e9681 1198 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
8ed6d636
VK
1199
1200# Test via harness
1201
1202test_harness: test_prep
1203 PERL=./perl $(MAKE) TESTFILE=harness _test
1204
1205test_harness_notty: test_prep
1206 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1207
1208# Handy way to run perlbug -ok without having to install and run the
1209# installed perlbug. We don't re-run the tests here - we trust the user.
1210# Please *don't* use this unless all tests pass.
1211# If you want to report test failures, use "make nok" instead.
1212
1213.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1214
1215ok: utilities
1216 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1217
1218okfile: utilities
1219 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1220
1221oknack: utilities
1222 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1223
1224okfilenack: utilities
1225 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1226
1227nok: utilities
1228 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1229
1230nokfile: utilities
1231 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1232
1233noknack: utilities
1234 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1235
1236nokfilenack: utilities
1237 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1238
467132b9 1239.PHONY: clist hlist shlist
8ed6d636
VK
1240
1241clist: $(c)
1242 echo $(c) | tr ' ' $(TRNL) >.clist
1243
1244hlist: $(h)
1245 echo $(h) | tr ' ' $(TRNL) >.hlist
1246
1247shlist: $(sh)
1248 echo $(sh) | tr ' ' $(TRNL) >.shlist
1249
8ed6d636
VK
1250Makefile: Makefile.SH ./config.sh
1251 $(SHELL) Makefile.SH
1252
1253.PHONY: distcheck
1254distcheck: FORCE
1255 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1256
1257.PHONY: elc
1258elc: emacs/cperl-mode.elc
1259
1260emacs/cperl-mode.elc: emacs/cperl-mode.el
1261 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1262
1263.PHONY: etags ctags tags
1264
1265etags: TAGS
1266
1267TAGS: emacs/cperl-mode.elc
1268 sh emacs/ptags
1269
8534470b 1270# Let's hope make will not go into an infinite loop on case-insensitive systems
8ed6d636
VK
1271# This may also fail if . is in the head of the path, since perl will
1272# require -Ilib
1273tags: TAGS
1274 perl emacs/e2ctags.pl TAGS > tags
1275
1276ctags:
1277 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c *.c *.h
1278
1279# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1280# If this runs make out of memory, delete /usr/include lines.
1281!NO!SUBS!
1282
1283$eunicefix $Makefile
1284case `pwd` in
1285*SH)
1286 $rm -f ../$Makefile
1287 $ln $Makefile ../$Makefile
1288 ;;
1289esac
1290$rm -f $firstmakefile
1291
1292# Now do any special processing required before building.
1293
1294case "$ebcdic" in
1295define)
1296 xxx=''
1297 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1298case "$osname" in
1299os390|posix-bc)
1300 if cd x2p
1301 then
1302 rm -f y.tab.c y.tab.h
1303 case "$osname" in
1304 posix-bc)
1305 # we are using two different yaccs in BS2000 Posix!
1306 byacc a2p.y >/dev/null 2>&1
1307 ;;
1308 *) # e.g. os390
1309 yacc a2p.y >/dev/null 2>&1
1310 ;;
1311 esac
1312 if cmp -s y.tab.c a2p.c
1313 then
1314 rm -f y.tab.c
1315 else
1316 echo "a2p.y -> a2p.c" >&2
1317 mv -f y.tab.c a2p.c
1318 chmod u+w a2p.c
1319 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1320 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1321 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1322 xxx="$xxx a2p.c"
1323 fi
1324 # In case somebody yacc -d:ed the a2p.y.
1325 if test -f y.tab.h
1326 then
1327 if cmp -s y.tab.h a2p.h
1328 then
1329 rm -f y.tab.h
1330 else
1331 echo "a2p.h -> a2p.h" >&2
1332 mv -f y.tab.h a2p.h
1333 xxx="$xxx a2p.h"
1334 fi
1335 fi
1336 cd ..
1337 fi
1338 ;;
8ed6d636
VK
1339*)
1340 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1341 ;;
1342esac
1343 case "$xxx" in
1344 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1345 esac
1346 ;;
1347esac
1348
1349# ex: set ts=8 sts=4 sw=4 noet: