Commit | Line | Data |
---|---|---|
1f00b0d6 S |
1 | #!/bin/sh |
2 | ||
937aac54 | 3 | # quote() - Creates a shell literal |
6bc4329f | 4 | # Usage: echo "...` quote "..." `..." |
937aac54 EB |
5 | quote() { |
6 | case "$1" in | |
7 | '') echo "''" ;; | |
8 | *) echo "$1" | sed 's/\([^a-zA-Z0-9.:_\-\/]\)/\\\1/g' ;; | |
9 | esac | |
10 | } | |
11 | ||
a02608de | 12 | case $PERL_CONFIG_SH in |
2304df62 | 13 | '') |
66b99216 JH |
14 | if test -f config.sh |
15 | then TOP=. | |
2304df62 AD |
16 | else |
17 | echo "Can't find config.sh."; exit 1 | |
18 | fi | |
19 | . $TOP/config.sh | |
20 | ;; | |
21 | esac | |
761ee4e8 | 22 | |
5a20539c VK |
23 | case $CROSS_NAME in |
24 | '') | |
25 | Makefile=Makefile | |
26 | ;; | |
27 | *) | |
28 | # if cross-compilation, the Makefile named accordingly | |
29 | Makefile=Makefile-cross-$CROSS_NAME | |
30 | . Cross/config-${CROSS_NAME}.sh | |
31 | ;; | |
32 | esac | |
33 | ||
2304df62 AD |
34 | : This forces SH files to create target in same directory as SH file. |
35 | : This is so that make depend always knows where to find SH derivatives. | |
36 | case "$0" in | |
37 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; | |
38 | esac | |
39 | ||
6bc4329f | 40 | pwd="`pwd`" |
d5d19f97 | 41 | linklibperl='$(LIBPERL)' |
fe5460cc | 42 | linklibperl_nonshr='' |
3c321fdc | 43 | shrpldflags='$(LDDLFLAGS)' |
6ee623d5 | 44 | ldlibpth='' |
ac9901e0 | 45 | DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB' |
bf799c64 | 46 | DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL' |
d96ebe2e | 47 | case "$useshrplib" in |
48 | true) | |
f4db5405 | 49 | # Prefix all runs of 'miniperl' and 'perl' with |
5cf1d1f1 | 50 | # $ldlibpth so that ./perl finds *this* shared libperl. |
c1b49bc0 | 51 | case "$LD_LIBRARY_PATH" in |
6bc4329f EB |
52 | '') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;; |
53 | *) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;; | |
c1b49bc0 | 54 | esac |
6ee623d5 | 55 | |
d5d19f97 | 56 | pldlflags="$cccdlflags" |
07f3cc2a | 57 | static_ldflags='' |
d96ebe2e | 58 | case "${osname}${osvers}" in |
59 | next4*) | |
3c321fdc | 60 | ld=libtool |
61 | lddlflags="-dynamic -undefined warning -framework System \ | |
62 | -compatibility_version 1 -current_version $patchlevel \ | |
63 | -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@" | |
6ee623d5 | 64 | ;; |
7eb35c03 | 65 | darwin*) |
f556e5b9 | 66 | shrpldflags="${ldflags} -dynamiclib \ |
c1e7a127 W |
67 | -compatibility_version \ |
68 | ${api_revision}.${api_version}.${api_subversion} \ | |
f556e5b9 | 69 | -current_version \ |
c1e7a127 | 70 | ${revision}.${patchlevel}.${subversion} \ |
f556e5b9 JH |
71 | -install_name \$(shrpdir)/\$@" |
72 | ;; | |
5cf1d1f1 | 73 | cygwin*) |
5f9145a3 RU |
74 | shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000" |
75 | linklibperl="-L. -lperl" | |
8736538c | 76 | ;; |
73d40b3e | 77 | sunos*) |
d5d19f97 UP |
78 | linklibperl="-lperl" |
79 | ;; | |
a774dfe6 | 80 | netbsd*|freebsd[234]*|openbsd*|dragonfly*) |
099685bc JH |
81 | linklibperl="-L. -lperl" |
82 | ;; | |
0c52c6a9 TV |
83 | interix*) |
84 | linklibperl="-L. -lperl" | |
85 | shrpldflags="$shrpldflags -Wl,--image-base,0x57000000" | |
86 | ;; | |
3c321fdc | 87 | aix*) |
21efc957 RT |
88 | case "$cc" in |
89 | gcc*) | |
90 | shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp" | |
91 | case "$osvers" in | |
92 | 3*) shrpldflags="$shrpldflags -e _nostart" | |
93 | ;; | |
94 | *) shrpldflags="$shrpldflags -Wl,-bnoentry" | |
95 | ;; | |
96 | esac | |
97 | shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib" | |
98 | linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl" | |
fe5460cc | 99 | linklibperl_nonshr='-lperl_nonshr' |
1553ab04 | 100 | ;; |
21efc957 RT |
101 | *) |
102 | shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp" | |
103 | case "$osvers" in | |
104 | 3*) shrpldflags="$shrpldflags -e _nostart" | |
105 | ;; | |
106 | *) shrpldflags="$shrpldflags -b noentry" | |
107 | ;; | |
108 | esac | |
109 | shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib" | |
110 | linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl" | |
fe5460cc | 111 | linklibperl_nonshr='-lperl_nonshr' |
1553ab04 TB |
112 | ;; |
113 | esac | |
3c321fdc | 114 | ;; |
1c7d1a19 GS |
115 | hpux*) |
116 | linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl" | |
46193409 | 117 | ;; |
ac9901e0 | 118 | os390*) |
4144573e | 119 | shrpldflags='-W l,XPLINK,dll' |
ac9901e0 PP |
120 | linklibperl='libperl.x' |
121 | DPERL_EXTERNAL_GLOB='' | |
122 | ;; | |
655635e8 | 123 | esac |
5cf1d1f1 JH |
124 | case "$ldlibpthname" in |
125 | '') ;; | |
126 | *) | |
127 | case "$osname" in | |
128 | os2) | |
129 | ldlibpth='' | |
130 | ;; | |
5cf1d1f1 | 131 | *) |
937aac54 EB |
132 | eval "ldlibpthval=\"\$$ldlibpthname\"" |
133 | ||
134 | case "$ldlibpthval" in | |
6bc4329f EB |
135 | '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;; |
136 | *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;; | |
937aac54 EB |
137 | esac |
138 | ||
5cf1d1f1 JH |
139 | ;; |
140 | esac | |
937aac54 | 141 | |
5cf1d1f1 JH |
142 | ;; |
143 | esac | |
ecfc5424 | 144 | |
9b9c6f34 AE |
145 | case "$osname" in |
146 | linux) | |
830717a7 AD |
147 | # If there is a pre-existing $libperl from a previous |
148 | # installation, Linux needs to use LD_PRELOAD to | |
149 | # override the LD_LIBRARY_PATH setting. See the | |
150 | # INSTALL file, under "Building a shared perl library". | |
151 | # If there is no pre-existing $libperl, we don't need | |
152 | # to do anything further. | |
153 | if test -f $archlib/CORE/$libperl; then | |
68e8d60a | 154 | rm -f preload |
d0ae58a5 | 155 | cat <<'EOT' > preload |
fde91635 JH |
156 | #! /bin/sh |
157 | lib=$1 | |
158 | shift | |
159 | test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD" | |
160 | exec "$@" | |
161 | EOT | |
9b9c6f34 AE |
162 | chmod 755 preload |
163 | ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl" | |
830717a7 AD |
164 | fi |
165 | ;; | |
9b9c6f34 AE |
166 | os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth" |
167 | ;; | |
60d79001 | 168 | esac |
9b9c6f34 | 169 | |
60d79001 | 170 | ;; |
9b9c6f34 AE |
171 | |
172 | *) pldlflags='' | |
07f3cc2a | 173 | static_ldflags='CCCDLFLAGS=' |
b1f5ad7d JH |
174 | ;; |
175 | esac | |
176 | ||
de4c0096 TC |
177 | : is Cwd static or dynamic |
178 | static_cwd='define' | |
04718b47 | 179 | list_util_dep='$(PERL_EXE)' |
de4c0096 TC |
180 | for f in $dynamic_ext; do |
181 | case $f in | |
182 | Cwd) static_cwd='undef' ;; | |
04718b47 | 183 | List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext |
de4c0096 TC |
184 | esac |
185 | done | |
186 | ||
a0d0e21e LW |
187 | : Prepare dependency lists for Makefile. |
188 | dynamic_list=' ' | |
ec81ed5d | 189 | dynamic_ext_re="lib/auto/re/re.$dlext" |
1179df5f | 190 | extra_dep=' |
635c6126 | 191 | ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod |
1179df5f | 192 | ' |
a0d0e21e LW |
193 | for f in $dynamic_ext; do |
194 | : the dependency named here will never exist | |
ecfc5424 | 195 | base=`echo "$f" | sed 's/.*\///'` |
9f3ef600 NC |
196 | this_target="lib/auto/$f/$base.$dlext" |
197 | dynamic_list="$dynamic_list $this_target" | |
198 | ||
199 | : Parallel makes reveal that we have some interdependencies | |
200 | case $f in | |
90e91dd8 | 201 | Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep |
04718b47 | 202 | $this_target: $list_util_dep" ;; |
9f3ef600 NC |
203 | Unicode/Normalize) extra_dep="$extra_dep |
204 | $this_target: uni.data" ;; | |
205 | esac | |
a0d0e21e LW |
206 | done |
207 | ||
208 | static_list=' ' | |
a0d0e21e LW |
209 | for f in $static_ext; do |
210 | base=`echo "$f" | sed 's/.*\///'` | |
cd4d8a96 | 211 | static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)" |
54f7170d AD |
212 | : Parallel makes reveal that we have some interdependencies |
213 | this_target="lib/auto/$f/$base\$(LIB_EXT)" | |
214 | case $f in | |
215 | Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep | |
216 | $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;; | |
217 | Unicode/Normalize) extra_dep="$extra_dep | |
218 | $this_target: uni.data" ;; | |
219 | esac | |
a0d0e21e LW |
220 | done |
221 | ||
4318d5a0 GB |
222 | nonxs_list=' ' |
223 | for f in $nonxs_ext; do | |
6c0ec79a | 224 | p=`echo "$f" | tr / -` |
a193a2db | 225 | for d in ext dist cpan; do |
321c3589 NC |
226 | if test -d $d/$p; then |
227 | nonxs_list="$nonxs_list $d/$p/pm_to_blib" | |
228 | fi | |
229 | done | |
4318d5a0 GB |
230 | done |
231 | ||
5ac1e9b2 AA |
232 | dtrace_h='' |
233 | dtrace_o='' | |
3d450a5d | 234 | minidtrace_o='' |
5ac1e9b2 AA |
235 | case "$usedtrace" in |
236 | define|true) | |
237 | dtrace_h='perldtrace.h' | |
238 | $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \ | |
3d450a5d DL |
239 | && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \ |
240 | && minidtrace_o='miniperldtrace$(OBJ_EXT)' | |
5ac1e9b2 AA |
241 | ;; |
242 | esac | |
243 | ||
5a20539c VK |
244 | echo "Extracting $Makefile (with variable substitutions)" |
245 | $spitshell >$Makefile <<!GROK!THIS! | |
246 | # $Makefile | |
85e6fe83 LW |
247 | # This file is derived from Makefile.SH. Any changes made here will |
248 | # be lost the next time you run Configure. | |
655635e8 | 249 | # Makefile is used to generate $firstmakefile. The only difference |
250 | # is that $firstmakefile has the dependencies filled in at the end. | |
0de566d7 | 251 | |
2304df62 | 252 | CC = $cc |
232e078e | 253 | LD = $ld |
16d20bd9 | 254 | |
2304df62 AD |
255 | LDFLAGS = $ldflags |
256 | CLDFLAGS = $ldflags | |
85e6fe83 | 257 | |
2304df62 AD |
258 | mallocsrc = $mallocsrc |
259 | mallocobj = $mallocobj | |
00e74f14 NC |
260 | madlysrc = $madlysrc |
261 | madlyobj = $madlyobj | |
85e6fe83 | 262 | LNS = $lns |
4c901d04 JH |
263 | # NOTE: some systems don't grok "cp -f". XXX Configure test needed? |
264 | CPS = $cp | |
2304df62 | 265 | RMS = rm -f |
85e6fe83 LW |
266 | ranlib = $ranlib |
267 | ||
16d20bd9 AD |
268 | # The following are mentioned only to make metaconfig include the |
269 | # appropriate questions in Configure. If you want to change these, | |
8e07c86e | 270 | # edit config.sh instead, or specify --man1dir=/wherever on |
16d20bd9 AD |
271 | # installman commandline. |
272 | bin = $installbin | |
273 | scriptdir = $scriptdir | |
d96ebe2e | 274 | shrpdir = $archlibexp/CORE |
16d20bd9 AD |
275 | privlib = $installprivlib |
276 | man1dir = $man1dir | |
277 | man1ext = $man1ext | |
278 | man3dir = $man3dir | |
279 | man3ext = $man3ext | |
280 | ||
85e6fe83 LW |
281 | # The following are used to build and install shared libraries for |
282 | # dynamic loading. | |
283 | LDDLFLAGS = $lddlflags | |
3c321fdc | 284 | SHRPLDFLAGS = $shrpldflags |
85e6fe83 | 285 | CCDLFLAGS = $ccdlflags |
a0d0e21e | 286 | DLSUFFIX = .$dlext |
ecfc5424 | 287 | PLDLFLAGS = $pldlflags |
d96ebe2e | 288 | LIBPERL = $libperl |
d5d19f97 | 289 | LLIBPERL= $linklibperl |
fe5460cc | 290 | LLIBPERL_NONSHR= $linklibperl_nonshr |
ecfc5424 | 291 | SHRPENV = $shrpenv |
a0d0e21e | 292 | |
94c41b70 AD |
293 | # Static targets are ordinarily built without CCCDLFLAGS. However, |
294 | # if building a shared libperl.so that might later be linked into | |
295 | # another application, then it might be appropriate to also build static | |
296 | # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC | |
07f3cc2a NC |
297 | # for GNU cc). |
298 | STATIC_LDFLAGS = $static_ldflags | |
94c41b70 | 299 | |
6ee623d5 | 300 | # The following is used to include the current directory in |
5cf1d1f1 | 301 | # the dynamic loader path you are building a shared libperl. |
6ee623d5 GS |
302 | LDLIBPTH = $ldlibpth |
303 | ||
cef6ea9d JH |
304 | # Sometimes running an executable is an adventure. |
305 | RUN = $run | |
306 | ||
5a20539c VK |
307 | # These variables may need to be manually set for non-Unix systems. |
308 | AR = $full_ar | |
cf9c4992 | 309 | HOST_EXE_EXT = $_exe |
5a20539c VK |
310 | EXE_EXT = $_exe |
311 | LIB_EXT = $_a | |
312 | OBJ_EXT = $_o | |
313 | PATH_SEP = $p_ | |
314 | ||
199863e7 NC |
315 | # Macros to invoke a copy of miniperl during the build. Targets which |
316 | # are built using these macros should depend on \$(MINIPERL_EXE) | |
317 | MINIPERL_EXE = miniperl\$(EXE_EXT) | |
318 | MINIPERL = \$(LDLIBPTH) \$(RUN) ./miniperl\$(EXE_EXT) -Ilib | |
319 | ||
34b80e25 JV |
320 | # Macros to invoke a copy of our fully operational perl during the build. |
321 | PERL_EXE = perl\$(EXE_EXT) | |
322 | RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) | |
323 | ||
5fb77da4 JV |
324 | # Macros to run our tests |
325 | RUN_TESTS = \$(LDLIBPTH) ./runtests | |
34b80e25 | 326 | |
a0d0e21e | 327 | dynamic_ext = $dynamic_list |
ec81ed5d | 328 | dynamic_ext_re = $dynamic_ext_re |
a0d0e21e | 329 | static_ext = $static_list |
4318d5a0 GB |
330 | nonxs_ext = $nonxs_list |
331 | ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext) | |
908fcb8b | 332 | DYNALOADER = DynaLoader\$(OBJ_EXT) |
2304df62 | 333 | |
9c839522 | 334 | libs = $perllibs $cryptlib |
2304df62 | 335 | |
34b80e25 | 336 | public = \$(PERL_EXE) utilities translators |
2304df62 AD |
337 | |
338 | shellflags = $shellflags | |
339 | ||
d96ebe2e | 340 | # This is set to MAKE=$make if your $make command doesn't |
341 | # do it for you. | |
342 | $make_set_make | |
4633a7c4 | 343 | |
1fef16b3 JH |
344 | # Mention $gmake here so it gets probed for by Configure. |
345 | ||
cfe76a0a JC |
346 | !GROK!THIS! |
347 | ||
348 | case "${osname}" in | |
09617314 | 349 | linux*|darwin) |
cfe76a0a | 350 | $spitshell >>$Makefile <<!GROK!THIS! |
4f9287d3 NC |
351 | # If you're going to use valgrind and it can't be invoked as plain valgrind |
352 | # then you'll need to change this, or override it on the make command line. | |
c7b956bb JC |
353 | VALGRIND ?= valgrind |
354 | VG_TEST ?= ./perl -e 1 2>/dev/null | |
4f9287d3 | 355 | |
cfe76a0a JC |
356 | !GROK!THIS! |
357 | ;; | |
358 | esac | |
359 | ||
360 | $spitshell >>$Makefile <<!GROK!THIS! | |
5ac1e9b2 AA |
361 | DTRACE = $dtrace |
362 | DTRACE_H = $dtrace_h | |
363 | DTRACE_O = $dtrace_o | |
3d450a5d | 364 | MINIDTRACE_O = $minidtrace_o |
5ac1e9b2 | 365 | |
4633a7c4 LW |
366 | FIRSTMAKEFILE = $firstmakefile |
367 | ||
368 | # Any special object files needed by this architecture, e.g. os2/os2.obj | |
369 | ARCHOBJS = $archobjs | |
370 | ||
89ada9f2 | 371 | .SUFFIXES: .c \$(OBJ_EXT) .i .s |
cd4d8a96 | 372 | |
d96ebe2e | 373 | # grrr |
374 | SHELL = $sh | |
655635e8 | 375 | |
28e8609d JH |
376 | # how to tr(anslate) newlines |
377 | TRNL = '$trnl' | |
378 | ||
82240bfc JH |
379 | OPTIMIZE = $optimize |
380 | ||
3343e82c JH |
381 | EXTRAS = $extras |
382 | ||
bf35c3f6 JH |
383 | INSTALLPREFIXEXP = $prefix |
384 | ||
d56c5707 | 385 | !GROK!THIS! |
b7b35fc2 | 386 | # not used by Makefile but by installperl; |
d56c5707 JH |
387 | # mentioned here so that metaconfig picks these up |
388 | # $installusrbinperl | |
389 | # $versiononly | |
b7b35fc2 | 390 | |
8170cb12 JH |
391 | case "${osname}:${osvers}" in |
392 | darwin:*) | |
5a20539c | 393 | $spitshell >>$Makefile <<EOF |
8170cb12 JH |
394 | |
395 | # Your locales are broken (osname $osname, osvers $osvers) | |
396 | # and to avoid the numerous | |
397 | # perl: warning: Setting locale failed. | |
398 | # warnings during the build process we reset the locale variables. | |
399 | ||
400 | LC_ALL=C | |
401 | LANG=C | |
402 | LANGUAGE=C | |
403 | EOF | |
404 | ;; | |
405 | esac | |
2304df62 | 406 | |
5a20539c VK |
407 | case $CROSS_NAME in |
408 | '') | |
85e6fe83 | 409 | ## In the following dollars and backticks do not need the extra backslash. |
5a20539c | 410 | $spitshell >>$Makefile <<'!NO!SUBS!' |
2304df62 | 411 | |
75550b4e | 412 | CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@` |
89ada9f2 | 413 | |
75550b4e | 414 | CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<` |
2304df62 | 415 | |
744ac0ea NC |
416 | CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl |
417 | CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl | |
5a20539c VK |
418 | |
419 | CONFIGPOD = lib/Config.pod | |
420 | ||
421 | CONFIGH = config.h | |
422 | !NO!SUBS! | |
423 | ;; | |
424 | *) | |
425 | # if cross-compilation | |
426 | $spitshell >>$Makefile <<!GROK!THIS! | |
427 | CROSS_NAME = $CROSS_NAME | |
428 | CROSS_LIB = xlib/$CROSS_NAME | |
429 | ||
430 | CCCMD = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$@\` -I\$(CROSS_LIB) | |
431 | CCCMDSRC = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$<\` -I\$(CROSS_LIB) | |
432 | CONFIGPM = xlib/\$(CROSS_NAME)/Config.pm | |
433 | CONFIGPOD = xlib/\$(CROSS_NAME)/Config.pod | |
434 | CONFIGH = xconfig.h | |
435 | ||
436 | xconfig.h: config_h.SH Cross/config-\$(CROSS_NAME).sh | |
437 | CONFIG_SH=Cross/config-\$(CROSS_NAME).sh CONFIG_H=xconfig.h \$(SHELL) config_h.SH | |
7222c10a | 438 | #TODO \$(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib -MCross=\$(CROSS_NAME) config_h.PL "INST_VER=\$(INST_VER)" "CORE_DIR=\$(CROSS_LIB)" "CONFIG_H=xconfig.h" |
5a20539c VK |
439 | cp xconfig.h \$(CROSS_LIB)/ |
440 | cp xconfig.h \$(CROSS_LIB)/config.h | |
441 | ||
442 | !GROK!THIS! | |
443 | ;; | |
444 | esac | |
445 | ||
9719c95b NC |
446 | SH_to_target() { |
447 | echo $@ | sed -e s/\\\.SH//g -e s/_/./g | |
448 | } | |
0ff64a71 | 449 | |
6105164f | 450 | SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH x2p/Makefile.SH' |
9719c95b | 451 | shextract=`SH_to_target $SH` |
0ff64a71 | 452 | |
5a20539c | 453 | ## In the following dollars and backticks do not need the extra backslash. |
0ff64a71 | 454 | $spitshell >>$Makefile <<!GROK!THIS! |
5a20539c | 455 | |
0ff64a71 | 456 | private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) lib/ExtUtils/Miniperl.pm git_version.h lib/buildcustomize.pl |
2304df62 | 457 | |
4633a7c4 LW |
458 | # Files to be built with variable substitution before miniperl |
459 | # is available. | |
0ff64a71 | 460 | sh = $SH |
4633a7c4 | 461 | |
0ff64a71 NC |
462 | shextract = $shextract |
463 | !GROK!THIS! | |
464 | ||
465 | ## In the following dollars and backticks do not need the extra backslash. | |
466 | $spitshell >>$Makefile <<'!NO!SUBS!' | |
4633a7c4 | 467 | |
467132b9 | 468 | addedbyconf = UU $(shextract) pstruct |
2304df62 | 469 | |
5ad7e614 | 470 | # Unicode data files generated by mktables |
3df51b85 KW |
471 | unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \ |
472 | lib/unicore/CombiningClass.pl lib/unicore/Name.pl \ | |
1a234f2b | 473 | lib/unicore/UCD.pl lib/unicore/Name.pm \ |
3e344d15 | 474 | lib/unicore/Heavy.pl lib/unicore/mktables.lst |
5ad7e614 NC |
475 | |
476 | # Directories of Unicode data files generated by mktables | |
477 | unidatadirs = lib/unicore/To lib/unicore/lib | |
478 | ||
5a20539c | 479 | h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h |
4d3a042d | 480 | h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h |
dd2155a4 | 481 | h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h |
219f41b1 | 482 | h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h |
7bbf947b | 483 | h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h |
9d9177be KW |
484 | h6 = charclass_invlists.h |
485 | h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6) | |
2304df62 | 486 | |
e1a479c5 | 487 | c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro.c perl.c |
00e74f14 | 488 | c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c |
26ea9e12 | 489 | c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c |
00e74f14 NC |
490 | c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c |
491 | c5 = $(madlysrc) $(mallocsrc) | |
2304df62 | 492 | |
a812f6a9 | 493 | c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c |
2304df62 | 494 | |
bf799c64 | 495 | obj0 = op$(OBJ_EXT) perl$(OBJ_EXT) |
c3ea6d28 | 496 | obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT) |
26ea9e12 | 497 | obj1 = $(madlyobj) $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro$(OBJ_EXT) keywords$(OBJ_EXT) |
bf799c64 | 498 | 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) |
48462a74 | 499 | 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) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) mathoms$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT) |
655635e8 | 500 | |
c3ea6d28 | 501 | minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
3d450a5d | 502 | mini_obj = $(minindt_obj) $(MINIDTRACE_O) |
bf799c64 | 503 | ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
5ac1e9b2 | 504 | obj = $(ndt_obj) $(DTRACE_O) |
2304df62 | 505 | |
583aa5c2 | 506 | perltoc_pod_prereqs = extra.pods pod/perl5191delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod |
7eb47696 | 507 | generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs) |
9387abf8 | 508 | generated_headers = uudmap.h bitcount.h mg_data.h |
344af494 | 509 | |
075abff3 | 510 | lintflags = \ |
5f66b61c AL |
511 | -b \ |
512 | -n \ | |
075abff3 | 513 | -p \ |
075abff3 AL |
514 | -Ncheck=%all \ |
515 | -Nlevel=4 \ | |
bb263b4e AL |
516 | -errchk=parentheses \ |
517 | -errhdr=%all \ | |
66a1b24b | 518 | -errfmt=src \ |
075abff3 | 519 | -errtags \ |
5f66b61c | 520 | -erroff=E_ASSIGN_NARROW_CONV \ |
075abff3 | 521 | -erroff=E_BAD_PTR_CAST \ |
5f66b61c AL |
522 | -erroff=E_BAD_PTR_CAST_ALIGN \ |
523 | -erroff=E_BAD_PTR_INT_COMBINATION \ | |
524 | -erroff=E_BAD_SIGN_EXTEND \ | |
075abff3 | 525 | -erroff=E_BLOCK_DECL_UNUSED \ |
5f66b61c | 526 | -erroff=E_CASE_FALLTHRU \ |
abcf5ada | 527 | -erroff=E_CONST_EXPR \ |
075abff3 | 528 | -erroff=E_CONSTANT_CONDITION \ |
abcf5ada | 529 | -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \ |
5f66b61c | 530 | -erroff=E_EQUALITY_NOT_ASSIGNMENT \ |
075abff3 | 531 | -erroff=E_EXPR_NULL_EFFECT \ |
66a1b24b | 532 | -erroff=E_FALSE_LOGICAL_EXPR \ |
66a1b24b | 533 | -erroff=E_INCL_NUSD \ |
5f66b61c | 534 | -erroff=E_LOOP_EMPTY \ |
66a1b24b | 535 | -erroff=E_MAIN_PARAM \ |
5f66b61c AL |
536 | -erroff=E_POINTER_TO_OBJECT \ |
537 | -erroff=E_PTRDIFF_OVERFLOW \ | |
538 | -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \ | |
539 | -erroff=E_STATIC_UNUSED \ | |
05c462c4 | 540 | -erroff=E_TRUE_LOGICAL_EXPR |
2304df62 | 541 | |
abcf5ada AL |
542 | splintflags = \ |
543 | -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \ | |
544 | -D__builtin_va_list=va_list \ | |
545 | -Dsigjmp_buf=jmp_buf \ | |
546 | -warnposix \ | |
547 | \ | |
548 | +boolint \ | |
549 | +charintliteral \ | |
550 | -fixedformalarray \ | |
551 | -mustfreefresh \ | |
552 | -nestedextern \ | |
553 | -predboolint \ | |
554 | -predboolothers \ | |
555 | -preproc \ | |
556 | -boolops \ | |
557 | -shadow \ | |
558 | -nullstate \ | |
559 | +longintegral \ | |
560 | +matchanyintegral \ | |
561 | -type \ | |
562 | \ | |
563 | +line-len 999 \ | |
564 | +weak | |
565 | ||
566 | splintfiles = $(c1) | |
567 | ||
e21c97b9 | 568 | .c$(OBJ_EXT): |
d96ebe2e | 569 | $(CCCMD) $(PLDLFLAGS) $*.c |
2304df62 | 570 | |
e21c97b9 | 571 | .c.i: |
89ada9f2 JH |
572 | $(CCCMDSRC) -E $*.c > $*.i |
573 | ||
e21c97b9 | 574 | .c.s: |
89ada9f2 JH |
575 | $(CCCMDSRC) -S $*.c |
576 | ||
a5addb16 | 577 | all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make |
51356d76 NC |
578 | @echo " "; |
579 | @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." | |
580 | ||
486cd780 | 581 | .PHONY: all translators utilities |
8565263a | 582 | |
2b63e250 AD |
583 | # Both git_version.h and lib/Config_git.pl are built |
584 | # by make_patchnum.pl. | |
585 | git_version.h: lib/Config_git.pl | |
586 | ||
587 | lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl | |
199863e7 | 588 | $(MINIPERL) make_patchnum.pl |
dcff826f YO |
589 | |
590 | # make sure that we recompile perl.c if the git version changes | |
591 | perl$(OBJ_EXT): git_version.h | |
6ee623d5 | 592 | |
d1309555 NC |
593 | !NO!SUBS! |
594 | ||
939767c9 AD |
595 | # Making utilities and translators require Cwd. If we have dynamic |
596 | # loading, we only need miniperl and Cwd.$dlext. If we have static | |
597 | # loading, we need to build perl first. | |
de4c0096 TC |
598 | case "$usedl$static_cwd" in |
599 | defineundef) | |
939767c9 | 600 | util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE' |
2fea0471 | 601 | x2p_deps="\$(MINIPERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE" |
939767c9 | 602 | ;; |
de4c0096 TC |
603 | definedefine) |
604 | util_deps='$(PERL_EXE) $(CONFIGPM) FORCE' | |
2fea0471 | 605 | x2p_deps="\$(PERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE" |
de4c0096 | 606 | ;; |
939767c9 | 607 | *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE' |
2fea0471 | 608 | x2p_deps="\$(PERL_EXE) \$(CONFIGPM) x2p/$firstmakefile FORCE" |
939767c9 AD |
609 | ;; |
610 | esac | |
611 | ||
d1309555 | 612 | $spitshell >>$Makefile <<!GROK!THIS! |
417de989 NC |
613 | x2p/$firstmakefile: makedepend |
614 | cd x2p; \$(MAKE) depend | |
615 | ||
939767c9 AD |
616 | translators: $x2p_deps |
617 | @echo " "; echo " Making x2p stuff"; cd x2p; \$(LDLIBPTH) \$(MAKE) all | |
618 | ||
3eaf6950 NC |
619 | x2p/s2p: $x2p_deps |
620 | cd x2p; \$(LDLIBPTH) \$(MAKE) s2p | |
621 | ||
9f417383 NC |
622 | x2p/find2perl: $x2p_deps |
623 | cd x2p; \$(LDLIBPTH) \$(MAKE) find2perl | |
624 | ||
939767c9 | 625 | utilities: $util_deps |
d1309555 | 626 | @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all |
909b3858 | 627 | |
d1309555 | 628 | !GROK!THIS! |
939767c9 | 629 | |
d1309555 | 630 | $spitshell >>$Makefile <<'!NO!SUBS!' |
909b3858 | 631 | |
16d20bd9 AD |
632 | # This is now done by installman only if you actually want the man pages. |
633 | # @echo " "; echo " Making docs"; cd pod; $(MAKE) all; | |
85e6fe83 LW |
634 | |
635 | # Phony target to force checking subdirectories. | |
e50aee73 | 636 | # Apparently some makes require an action for the FORCE target. |
869a466c | 637 | .PHONY: FORCE |
85e6fe83 | 638 | FORCE: |
4633a7c4 | 639 | @sh -c true |
aa9e9805 | 640 | !NO!SUBS! |
4ba7095c | 641 | |
aa9e9805 | 642 | for file in op perl; do |
6cdadb5a NC |
643 | if $issymlink $file.c; then |
644 | $spitshell >>$Makefile <<!GROK!THIS! | |
645 | ||
646 | # We do a copy of the $file.c instead of a symlink because gcc gets huffy | |
647 | # if we have a symlink forest to another disk (it complains about too many | |
648 | # levels of symbolic links, even if we have only two) | |
c015c5e4 | 649 | |
aa9e9805 NC |
650 | ${file}mini.c: $file.c |
651 | \$(RMS) ${file}mini.c | |
652 | \$(CPS) ${file}.c ${file}mini.c | |
6cdadb5a NC |
653 | !GROK!THIS! |
654 | else | |
655 | $spitshell >>$Makefile <<!GROK!THIS! | |
656 | ||
657 | ${file}mini.c: $file.c | |
658 | \$(RMS) ${file}mini.c | |
659 | \$(LNS) ${file}.c ${file}mini.c | |
660 | !GROK!THIS! | |
661 | fi | |
662 | ||
663 | $spitshell >>$Makefile <<!GROK!THIS! | |
bd0dd1d8 | 664 | |
aa9e9805 NC |
665 | ${file}mini\$(OBJ_EXT): ${file}mini.c |
666 | \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c | |
667 | !GROK!THIS! | |
668 | done | |
bf799c64 | 669 | |
aa9e9805 | 670 | $spitshell >>$Makefile <<'!NO!SUBS!' |
bf799c64 | 671 | |
9387abf8 | 672 | globals$(OBJ_EXT): $(generated_headers) |
9444d213 | 673 | |
6f83ef0e | 674 | uudmap.h mg_data.h: bitcount.h |
0f13ebd5 | 675 | |
aa9e9805 | 676 | bitcount.h: generate_uudmap$(HOST_EXE_EXT) |
9387abf8 | 677 | $(RUN) ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers) |
6f83ef0e NC |
678 | |
679 | generate_uudmap$(OBJ_EXT): mg_raw.h | |
9444d213 | 680 | |
aa9e9805 NC |
681 | generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT) |
682 | $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs) | |
9444d213 | 683 | |
517e7c64 | 684 | miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h |
92c28edd | 685 | $(CCCMD) $(PLDLFLAGS) $*.c |
ecfc5424 | 686 | |
fbcaf611 NC |
687 | perlmain.c: $(MINIPERL_EXE) lib/ExtUtils/Miniperl.pm |
688 | $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(@ARGV)' DynaLoader $(static_ext) > perlmain.c | |
85e6fe83 | 689 | |
486cd780 | 690 | perlmain$(OBJ_EXT): perlmain.c |
92c28edd | 691 | $(CCCMD) $(PLDLFLAGS) $*.c |
85e6fe83 | 692 | |
a0d0e21e LW |
693 | # The file ext.libs is a list of libraries that must be linked in |
694 | # for static extensions, e.g. -lm -lgdbm, etc. The individual | |
695 | # static extension Makefile's add to it. | |
fed7345c | 696 | ext.libs: $(static_ext) |
a0d0e21e | 697 | -@test -f ext.libs || touch ext.libs |
85e6fe83 | 698 | |
ecfc5424 | 699 | !NO!SUBS! |
599a829f | 700 | |
d96ebe2e | 701 | # How to build libperl. This is still rather convoluted. |
599a829f | 702 | # Load up custom Makefile.SH fragment for shared loading and executables: |
8736538c | 703 | case "$osname" in |
8736538c AS |
704 | *) |
705 | Makefile_s="$osname/Makefile.SHs" | |
706 | ;; | |
707 | esac | |
708 | ||
549a6b10 JH |
709 | case "$osname" in |
710 | aix) | |
5a20539c | 711 | $spitshell >>$Makefile <<!GROK!THIS! |
9c839522 | 712 | LIBS = $perllibs |
5f9d9a17 ME |
713 | # In AIX we need to change this for building Perl itself from |
714 | # its earlier definition (which is for building external | |
715 | # extensions *after* Perl has been built and installed) | |
716 | CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'` | |
549a6b10 JH |
717 | |
718 | !GROK!THIS! | |
719 | case "$useshrplib" in | |
720 | define|true|[yY]*) | |
5a20539c | 721 | $spitshell >>$Makefile <<'!NO!SUBS!' |
549a6b10 JH |
722 | |
723 | LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT) | |
724 | MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT) | |
725 | ||
a643aca6 | 726 | $(LIBPERL_NONSHR): $(obj) |
549a6b10 | 727 | $(RMS) $(LIBPERL_NONSHR) |
a643aca6 | 728 | $(AR) rcu $(LIBPERL_NONSHR) $(obj) |
549a6b10 | 729 | |
bf799c64 | 730 | $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) |
a7089531 | 731 | $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \ |
bf799c64 | 732 | opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS) |
549a6b10 JH |
733 | |
734 | MINIPERLEXP = $(MINIPERL_NONSHR) | |
735 | ||
736 | LIBPERLEXPORT = perl.exp | |
737 | ||
738 | !NO!SUBS! | |
739 | ||
740 | ;; | |
741 | *) | |
5a20539c | 742 | $spitshell >>$Makefile <<'!NO!SUBS!' |
199863e7 | 743 | MINIPERLEXP = $(MINIPERL_EXE) |
549a6b10 JH |
744 | |
745 | PERLEXPORT = perl.exp | |
746 | ||
747 | !NO!SUBS! | |
748 | ;; | |
749 | esac | |
5a20539c | 750 | $spitshell >>$Makefile <<'!NO!SUBS!' |
e6807d8a | 751 | perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) |
5d4e58dc | 752 | ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp |
549a6b10 JH |
753 | |
754 | !NO!SUBS! | |
755 | ;; | |
2c2d71f5 | 756 | os2) |
5a20539c | 757 | $spitshell >>$Makefile <<'!NO!SUBS!' |
2c2d71f5 JH |
758 | MINIPERLEXP = miniperl |
759 | ||
e6807d8a | 760 | perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map |
46aae397 | 761 | ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def |
2c2d71f5 JH |
762 | |
763 | !NO!SUBS! | |
764 | ;; | |
5f9145a3 | 765 | cygwin) |
5a20539c | 766 | $spitshell >>$Makefile <<'!NO!SUBS!' |
5f9145a3 RU |
767 | cygwin.c: cygwin/cygwin.c |
768 | $(LNS) cygwin/cygwin.c | |
769 | ||
770 | LIBPERL_NONSHR = libperl$(LIB_EXT) | |
771 | ||
772 | $(LIBPERL_NONSHR): $(obj) | |
773 | $(RMS) $(LIBPERL_NONSHR) | |
774 | $(AR) rcu $(LIBPERL_NONSHR) $(obj) | |
775 | ||
776 | !NO!SUBS! | |
777 | ;; | |
549a6b10 JH |
778 | esac |
779 | ||
5f9145a3 | 780 | if test -s $Makefile_s ; then |
8736538c | 781 | . $Makefile_s |
5a20539c | 782 | $spitshell >>$Makefile <<!GROK!THIS! |
cd4d8a96 | 783 | |
8736538c | 784 | Makefile: $Makefile_s |
cd4d8a96 | 785 | !GROK!THIS! |
786 | else | |
5ac1e9b2 AA |
787 | case "$dtrace_h" in |
788 | ?*) | |
5a20539c | 789 | $spitshell >>$Makefile <<'!NO!SUBS!' |
12b81ca5 | 790 | # dtrace dicards const qualifiers from arguments, put them back |
5ac1e9b2 | 791 | $(DTRACE_H): perldtrace.d |
12b81ca5 TC |
792 | $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in |
793 | sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H) | |
794 | $(RMS) $(DTRACE_H).in | |
5ac1e9b2 AA |
795 | |
796 | mydtrace.h: $(DTRACE_H) | |
797 | ||
798 | !NO!SUBS! | |
799 | ;; | |
800 | esac | |
801 | case "$dtrace_o" in | |
802 | ?*) | |
5a20539c | 803 | $spitshell >>$Makefile <<'!NO!SUBS!' |
3d450a5d | 804 | $(DTRACE_O): perldtrace.d $(ndt_obj) |
5ac1e9b2 AA |
805 | $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj) |
806 | ||
c3ea6d28 TC |
807 | $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT) |
808 | $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT) | |
3d450a5d | 809 | |
5ac1e9b2 AA |
810 | !NO!SUBS! |
811 | ;; | |
812 | esac | |
5a20539c | 813 | $spitshell >>$Makefile <<'!NO!SUBS!' |
908fcb8b | 814 | $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT) |
9c9e9f08 | 815 | !NO!SUBS! |
d96ebe2e | 816 | case "$useshrplib" in |
817 | true) | |
5a20539c | 818 | $spitshell >>$Makefile <<'!NO!SUBS!' |
0107c41a | 819 | rm -f $@ |
908fcb8b | 820 | $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) |
3c321fdc | 821 | !NO!SUBS! |
822 | case "$osname" in | |
823 | aix) | |
5a20539c | 824 | $spitshell >>$Makefile <<'!NO!SUBS!' |
28e8609d | 825 | rm -f libperl$(OBJ_EXT) |
3c321fdc | 826 | mv $@ libperl$(OBJ_EXT) |
827 | $(AR) qv $(LIBPERL) libperl$(OBJ_EXT) | |
ecfc5424 | 828 | !NO!SUBS! |
3c321fdc | 829 | ;; |
830 | esac | |
d96ebe2e | 831 | ;; |
832 | *) | |
5a20539c | 833 | $spitshell >>$Makefile <<'!NO!SUBS!' |
d96ebe2e | 834 | rm -f $(LIBPERL) |
908fcb8b | 835 | $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER) |
d96ebe2e | 836 | @$(ranlib) $(LIBPERL) |
655635e8 | 837 | !NO!SUBS! |
d96ebe2e | 838 | ;; |
839 | esac | |
5a20539c | 840 | $spitshell >>$Makefile <<'!NO!SUBS!' |
599a829f IZ |
841 | |
842 | # How to build executables. | |
843 | ||
844 | # The $& notation tells Sequent machines that it can do a parallel make, | |
845 | # and is harmless otherwise. | |
846 | # The miniperl -w -MExporter line is a basic cheap test to catch errors | |
847 | # before make goes on to run preplibrary and then MakeMaker on extensions. | |
848 | # This is very handy because later errors are often caused by miniperl | |
849 | # build problems but that's not obvious to the novice. | |
850 | # The Module used here must not depend on Config or any extensions. | |
851 | ||
cb251201 NC |
852 | # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on |
853 | # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs | |
854 | # miniperl to exist first permits us to | |
855 | # a) have one rule generate both miniperl and lib/buildcustomize.pl | |
856 | # (so that lib/buildcustomise.pl is always available. This simplifies things) | |
857 | # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE) | |
858 | ||
859 | $(MINIPERL_EXE): lib/buildcustomize.pl | |
860 | ||
ecfb2188 GS |
861 | !NO!SUBS! |
862 | ||
863 | case "${osname}${osvers}" in | |
b6c36746 | 864 | aix*) |
5a20539c | 865 | $spitshell >>$Makefile <<'!NO!SUBS!' |
cb251201 | 866 | lib/buildcustomize.pl: $& $(mini_obj) |
c3ea6d28 | 867 | $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs) |
5a20539c | 868 | $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
cb251201 | 869 | $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl |
ecfb2188 GS |
870 | !NO!SUBS! |
871 | ;; | |
e56d2c04 | 872 | next4*) |
5a20539c | 873 | $spitshell >>$Makefile <<'!NO!SUBS!' |
cb251201 | 874 | lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl |
c3ea6d28 | 875 | $(CC) -o $(MINIPERL_EXE) $(mini_obj) $(libs) |
5a20539c | 876 | $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
cb251201 | 877 | $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl |
535d2540 JH |
878 | !NO!SUBS! |
879 | ;; | |
cb3fc426 | 880 | darwin*) |
986530ea JH |
881 | case "$osvers" in |
882 | [1-6].*) ;; | |
883 | *) case "$ldflags" in | |
884 | *"-flat_namespace"*) ;; | |
885 | *) # to allow opmini.o to override stuff in libperl.dylib | |
5a20539c | 886 | $spitshell >>$Makefile <<!NO!SUBS! |
69625aa9 JH |
887 | NAMESPACEFLAGS = -force_flat_namespace |
888 | !NO!SUBS! | |
986530ea JH |
889 | ;; |
890 | esac | |
891 | ;; | |
cb3fc426 | 892 | esac |
5a20539c | 893 | $spitshell >>$Makefile <<'!NO!SUBS!' |
cb251201 | 894 | lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl |
cb3fc426 | 895 | -@rm -f miniperl.xok |
199863e7 | 896 | $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \ |
c3ea6d28 | 897 | $(mini_obj) $(libs) |
5a20539c | 898 | $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
cb251201 | 899 | $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl |
cb3fc426 JH |
900 | !NO!SUBS! |
901 | ;; | |
ecfb2188 | 902 | *) |
5a20539c | 903 | $spitshell >>$Makefile <<'!NO!SUBS!' |
cb251201 | 904 | lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl |
93c0359c | 905 | -@rm -f miniperl.xok |
199863e7 | 906 | $(LDLIBPTH) $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \ |
c3ea6d28 | 907 | $(mini_obj) $(libs) |
5a20539c | 908 | $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
cb251201 | 909 | $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl |
ecfb2188 GS |
910 | !NO!SUBS! |
911 | ;; | |
912 | esac | |
913 | ||
5a20539c | 914 | $spitshell >>$Makefile <<'!NO!SUBS!' |
599a829f | 915 | |
cb251201 | 916 | $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl |
93c0359c | 917 | -@rm -f miniperl.xok |
908fcb8b | 918 | $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f | 919 | |
4ae3d70a JH |
920 | # Purify/Quantify Perls. |
921 | ||
34b80e25 | 922 | pure$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) |
908fcb8b | 923 | $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f | 924 | |
34b80e25 | 925 | purecov$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) |
908fcb8b | 926 | $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
dbadb36a | 927 | |
34b80e25 | 928 | quant$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) |
908fcb8b | 929 | $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 | 930 | |
45ed6be3 JC |
931 | !NO!SUBS! |
932 | ||
933 | case "${osname}${osvers}" in | |
09617314 | 934 | linux*|darwin*) |
45ed6be3 | 935 | $spitshell >>$Makefile <<'!NO!SUBS!' |
09617314 | 936 | # Valgrind perl (currently Linux, Darwin only) |
7a834142 JH |
937 | |
938 | perl.valgrind.config: config.sh | |
939 | @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..." | |
940 | @$(MAKE) perl.config.dashg | |
941 | @echo "Checking usemymalloc='n' in config.sh..." | |
942 | @grep "^usemymalloc=" config.sh | |
943 | @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 | |
944 | @echo "And of course you have to have valgrind..." | |
c7b956bb | 945 | $(VALGRIND) $(VG_TEST) || exit 1 |
45ed6be3 JC |
946 | !NO!SUBS! |
947 | ;; | |
948 | esac | |
949 | ||
950 | $spitshell >>$Makefile <<'!NO!SUBS!' | |
7a834142 | 951 | |
4ae3d70a JH |
952 | # Third Degree Perl (Tru64 only) |
953 | ||
719561de | 954 | perl.config.dashg: |
83f0ef60 | 955 | @echo "Checking optimize='-g' in config.sh..." |
fdb8bc18 RGS |
956 | @grep "^optimize=" config.sh |
957 | @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1 | |
4ae3d70a JH |
958 | |
959 | perl.third.config: config.sh | |
960 | @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..." | |
6e36760b | 961 | @$(MAKE) perl.config.dashg |
83f0ef60 JH |
962 | @echo "Checking usemymalloc='n' in config.sh..." |
963 | @grep "^usemymalloc=" config.sh | |
964 | @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 | |
170ba846 | 965 | |
412c6516 | 966 | perl.third: /usr/bin/atom perl.third.config perl |
dca31ef4 | 967 | atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl |
83f0ef60 | 968 | @echo "Now you may run perl.third and then study perl.3log." |
15615bfd | 969 | |
4ae3d70a JH |
970 | # Pixie Perls (Tru64 and IRIX only) |
971 | ||
719561de | 972 | perl.pixie.config: config.sh |
4ae3d70a | 973 | @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..." |
6e36760b | 974 | @$(MAKE) perl.config.dashg |
4ae3d70a | 975 | |
719561de | 976 | perl.pixie.atom: /usr/bin/atom perl |
4ae3d70a JH |
977 | atom -tool pixie -L. -all -toolargs="-quiet" perl |
978 | ||
979 | perl.pixie.irix: perl | |
980 | pixie perl | |
981 | ||
719561de | 982 | perl.pixie: /usr/bin/pixie perl.pixie.config perl |
4ae3d70a JH |
983 | if test -x /usr/bin/atom; then \ |
984 | $(MAKE) perl.pixie.atom; \ | |
985 | else \ | |
986 | $(MAKE) perl.pixie.irix; \ | |
987 | fi | |
83f0ef60 JH |
988 | @echo "Now you may run perl.pixie and then run pixie." |
989 | ||
990 | # Gprof Perl | |
991 | ||
992 | perl.config.dashpg: | |
993 | @echo "Checking optimize='-pg' in config.sh..." | |
994 | @grep "^optimize=" config.sh | |
64778e5f | 995 | @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1 |
83f0ef60 JH |
996 | |
997 | perl.gprof.config: config.sh | |
998 | @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..." | |
999 | @$(MAKE) perl.config.dashpg | |
1000 | ||
1001 | perl.gprof: /usr/bin/gprof perl.gprof.config | |
64778e5f | 1002 | @-rm -f perl |
51a35ef1 | 1003 | $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl |
83f0ef60 | 1004 | @echo "Now you may run perl.gprof and then run gprof perl.gprof." |
4ae3d70a | 1005 | |
51a35ef1 JH |
1006 | # Gcov Perl |
1007 | ||
1008 | perl.config.gcov: | |
1009 | @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..." | |
1010 | @echo "Checking gccversion in config.sh..." | |
1011 | @grep "^gccversion=" config.sh | |
1012 | @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1 | |
1013 | @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..." | |
1014 | @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..." | |
1015 | @grep "^ccflags=" config.sh | |
1016 | @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1 | |
1017 | ||
1018 | perl.gcov: perl.config.gcov | |
1019 | @-rm -f perl | |
1020 | $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl | |
1021 | @echo "Now you may run perl.gcov and then run gcov some.c." | |
1022 | ||
f946bb38 JH |
1023 | # Microperl. This is just a convenience thing if one happens to |
1024 | # build also the full Perl and therefore the real big Makefile: | |
f4db5405 | 1025 | # usually one should manually explicitly issue the below command. |
f946bb38 | 1026 | |
869a466c | 1027 | .PHONY: microperl |
f946bb38 JH |
1028 | microperl: |
1029 | $(MAKE) -f Makefile.micro | |
1030 | ||
fe5460cc RT |
1031 | !NO!SUBS! |
1032 | ||
599a829f IZ |
1033 | fi |
1034 | ||
6d4b7d88 JH |
1035 | # Some environment have no system(), which mkpport uses. |
1036 | # Let's try running the commands with shell. | |
1037 | case "${osname}" in | |
1038 | catamount) | |
5a20539c | 1039 | $spitshell >>$Makefile <<!GROK!THIS! |
6d4b7d88 | 1040 | .PHONY: makeppport |
199863e7 | 1041 | makeppport: \$(MINIPERL_EXE) \$(CONFIGPM) |
6d4b7d88 | 1042 | -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \ |
199863e7 | 1043 | (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \ |
6d4b7d88 JH |
1044 | done |
1045 | ||
1046 | !GROK!THIS! | |
1047 | ;; | |
1048 | *) | |
5a20539c | 1049 | $spitshell >>$Makefile <<'!NO!SUBS!' |
6d4b7d88 | 1050 | .PHONY: makeppport |
199863e7 | 1051 | makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext) |
f6b3c354 | 1052 | $(MINIPERL) mkppport |
6d4b7d88 JH |
1053 | |
1054 | !NO!SUBS! | |
1055 | ;; | |
1056 | esac | |
1057 | ||
5a20539c | 1058 | $spitshell >>$Makefile <<'!NO!SUBS!' |
599a829f | 1059 | |
869a466c | 1060 | .PHONY: preplibrary |
7353f64c | 1061 | preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL) |
2304df62 | 1062 | |
0f13ebd5 NC |
1063 | $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD) |
1064 | ||
1065 | $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl | |
199863e7 | 1066 | $(MINIPERL) configpm |
2304df62 | 1067 | |
199863e7 NC |
1068 | lib/ExtUtils/Miniperl.pm: miniperlmain.c $(MINIPERL_EXE) minimod.pl $(CONFIGPM) |
1069 | $(MINIPERL) minimod.pl > lib/ExtUtils/Miniperl.pm | |
fed7345c | 1070 | |
58fa074c | 1071 | unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data |
6c684aee | 1072 | |
199863e7 | 1073 | uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) |
f6b3c354 | 1074 | $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p |
f86864ac KW |
1075 | # Commented out so always runs, mktables looks at far more files than we |
1076 | # can in this makefile to decide if needs to run or not | |
1077 | # touch uni.data | |
5ad7e614 | 1078 | |
34b80e25 | 1079 | # $(PERL_EXE) and ext because buildtoc uses Text::Wrap uses re |
7eb47696 NC |
1080 | # But also this ensures that all extensions are built before we try to scan |
1081 | # them, which picks up Devel::PPPort's documentation. | |
34b80e25 | 1082 | pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc |
b78c1104 | 1083 | $(RUN_PERL) -f -Ilib pod/buildtoc -q |
7eb47696 | 1084 | |
0f13ebd5 NC |
1085 | pod/perlapi.pod: pod/perlintern.pod |
1086 | ||
7882b24a NC |
1087 | # Depending on $(nonxs_ext) gets us Text::Wrap built |
1088 | pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc $(nonxs_ext) | |
199863e7 | 1089 | $(MINIPERL) autodoc.pl |
344af494 | 1090 | |
199863e7 | 1091 | pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST |
f6b3c354 | 1092 | $(MINIPERL) pod/perlmodlib.PL -q |
6e2c8928 | 1093 | |
583aa5c2 RS |
1094 | pod/perl5191delta.pod: pod/perldelta.pod |
1095 | $(RMS) pod/perl5191delta.pod | |
1096 | $(LNS) perldelta.pod pod/perl5191delta.pod | |
8e7bc40f | 1097 | |
199863e7 | 1098 | extra.pods: $(MINIPERL_EXE) |
ebbebb7c | 1099 | -@test ! -f extra.pods || rm -f `cat extra.pods` |
72b3d9b4 | 1100 | -@rm -f extra.pods |
b4bc034f | 1101 | -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \ |
72b3d9b4 | 1102 | nx=`echo $$x | sed -e "s/README\.//"`; \ |
e0be038f | 1103 | $(LNS) ../$$x "pod/perl"$$nx".pod" ; \ |
72b3d9b4 GS |
1104 | echo "pod/perl"$$nx".pod" >> extra.pods ; \ |
1105 | done | |
ebbebb7c | 1106 | |
34b80e25 JV |
1107 | extras.make: $(PERL_EXE) |
1108 | -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst` | |
bf35c3f6 | 1109 | |
34b80e25 JV |
1110 | extras.test: $(PERL_EXE) |
1111 | -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst` | |
bf35c3f6 | 1112 | |
34b80e25 JV |
1113 | extras.install: $(PERL_EXE) |
1114 | -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst` | |
bf35c3f6 | 1115 | |
869a466c | 1116 | .PHONY: install install-strip install-all install-verbose install-silent \ |
5e2f386f | 1117 | no-install install.perl install.man install.html |
869a466c | 1118 | |
59c72abb | 1119 | install_strip install-strip: |
70eaf669 | 1120 | $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)" |
f556e5b9 | 1121 | |
59c72abb | 1122 | install install_all install-all: |
70eaf669 | 1123 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)" |
c77385cf | 1124 | |
59c72abb | 1125 | install_verbose install-verbose: |
70eaf669 | 1126 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)" |
c458b76c | 1127 | |
59c72abb | 1128 | install_silent install-silent: |
70eaf669 | 1129 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)" |
4ad019ef | 1130 | |
59c72abb | 1131 | no_install no-install: |
70eaf669 | 1132 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)" |
16d20bd9 | 1133 | |
70eaf669 IZ |
1134 | # Set this to an empty string to avoid an attempt of rebuild before install |
1135 | INSTALL_DEPENDENCE = all | |
1136 | ||
1137 | install.perl: $(INSTALL_DEPENDENCE) installperl | |
34b80e25 | 1138 | $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) |
3eb2897c | 1139 | -@test ! -s extras.lst || $(MAKE) extras.install |
a0d0e21e | 1140 | |
b1a1e9f1 | 1141 | install.man: all installman |
34b80e25 | 1142 | $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS) |
16d20bd9 | 1143 | |
84902520 TB |
1144 | # XXX Experimental. Hardwired values, but useful for testing. |
1145 | # Eventually Configure could ask for some of these values. | |
1146 | install.html: all installhtml | |
40096396 | 1147 | -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd .. |
34b80e25 | 1148 | $(RUN_PERL) installhtml \ |
84902520 | 1149 | --podroot=. --podpath=. --recurse \ |
47ec63d0 RGS |
1150 | --htmldir=$(privlib)/html \ |
1151 | --htmlroot=$(privlib)/html \ | |
84902520 TB |
1152 | --splithead=pod/perlipc \ |
1153 | --splititem=pod/perlfunc \ | |
e2b41a3f | 1154 | --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \ |
84902520 TB |
1155 | --verbose |
1156 | ||
16d20bd9 | 1157 | |
a0d0e21e | 1158 | # I now supply perly.c with the kits, so the following section is |
0de566d7 DM |
1159 | # used only if you force bison to run by saying |
1160 | # make regen_perly | |
1161 | # You normally shouldn't remake perly.[ch]. | |
1162 | ||
1163 | .PHONY: regen_perly | |
1164 | ||
59c72abb | 1165 | run_byacc run-byacc: |
0de566d7 DM |
1166 | @echo "run_byacc is obsolete; try 'make regen_perly' instead" |
1167 | ||
f05e27e5 | 1168 | # this outputs perly.h, perly.act and perly.tab |
59c72abb | 1169 | regen_perly regen-perly: |
0de566d7 | 1170 | perl regen_perly.pl |
56febc5e AD |
1171 | |
1172 | # We don't want to regenerate perly.c and perly.h, but they might | |
1173 | # appear out-of-date after a patch is applied or a new distribution is | |
1174 | # made. | |
92c28edd | 1175 | perly.c: perly.y |
b233458b JH |
1176 | -@sh -c true |
1177 | ||
92c28edd | 1178 | perly.h: perly.y |
b233458b JH |
1179 | -@sh -c true |
1180 | ||
d500e60d | 1181 | SYM = globvar.sym perlio.sym |
419eaf7b | 1182 | |
907b3e23 | 1183 | SYMH = perlvars.h intrpvar.h |
419eaf7b | 1184 | |
dae78bb1 IZ |
1185 | CHMOD_W = chmod +w |
1186 | ||
a8581515 | 1187 | # The following files are generated automatically |
d500e60d | 1188 | # embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c |
897d3989 | 1189 | # opcode.pl: opcode.h opnames.h pp_proto.h |
c83f8f39 JH |
1190 | # regcomp.pl: regnodes.h |
1191 | # warnings.pl: warnings.h lib/warnings.pm | |
f2c01b15 | 1192 | # feature.pl: feature.h lib/feature.pm |
e50aee73 AD |
1193 | # The correct versions should be already supplied with the perl kit, |
1194 | # in case you don't have perl available. | |
36bb303b | 1195 | # To force them to be regenerated, run |
9ad884cb | 1196 | # perl regen.pl |
36bb303b NC |
1197 | # with your existing copy of perl |
1198 | # (make regen_headers is kept for backwards compatibility) | |
e1354ed6 | 1199 | |
d500e60d | 1200 | AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \ |
69bcf1d3 | 1201 | perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \ |
f2c01b15 | 1202 | lib/feature.pm feature.h |
e1354ed6 | 1203 | |
1e2f36ef | 1204 | .PHONY: regen_headers regen_all |
869a466c | 1205 | |
95aa0565 | 1206 | regen: FORCE |
9ad884cb | 1207 | -perl regen.pl |
2caceca9 | 1208 | -perl regen/uconfig_h.pl |
8e07c86e | 1209 | |
59c72abb | 1210 | regen_headers regen-headers: FORCE |
95aa0565 | 1211 | -perl regen.pl -v |
2caceca9 | 1212 | -perl regen/uconfig_h.pl -v |
95aa0565 | 1213 | |
bfc0a3e7 | 1214 | regen_meta regen-meta: META.yml META.json |
de65cabd JV |
1215 | |
1216 | META.yml: FORCE | |
4612967b | 1217 | PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib Porting/makemeta -y |
bfc0a3e7 CBW |
1218 | |
1219 | META.json: FORCE | |
4612967b | 1220 | PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib Porting/makemeta -j |
de65cabd JV |
1221 | |
1222 | ||
59c72abb | 1223 | regen_all regen-all: regen regen_meta |
9fec149b | 1224 | |
1aea71db A |
1225 | .PHONY: manisort manicheck |
1226 | ||
1227 | manisort: FORCE | |
4e86fc4b JH |
1228 | @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \ |
1229 | perl Porting/manisort -q -o MANIFEST; sh -c true) | |
1aea71db A |
1230 | |
1231 | manicheck: FORCE | |
1232 | perl Porting/manicheck | |
1233 | ||
a0d0e21e | 1234 | # Extensions: |
4318d5a0 GB |
1235 | # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |
1236 | # automatically get built. There should ordinarily be no need to change | |
1237 | # any of this part of makefile. | |
a0d0e21e LW |
1238 | # |
1239 | # The dummy dependency is a place holder in case $(dynamic_ext) or | |
1240 | # $(static_ext) is empty. | |
1241 | # | |
1242 | # DynaLoader may be needed for extensions that use Makefile.PL. | |
1243 | ||
5e4c4c91 | 1244 | $(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext) |
199863e7 | 1245 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) |
a0d0e21e | 1246 | |
56dba491 | 1247 | d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL) |
199863e7 | 1248 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic |
a0d0e21e | 1249 | |
5e4c4c91 | 1250 | s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE |
199863e7 | 1251 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) |
2304df62 | 1252 | |
5e4c4c91 | 1253 | n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE |
199863e7 | 1254 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
9f3ef600 NC |
1255 | !NO!SUBS! |
1256 | ||
5a20539c | 1257 | $spitshell >>$Makefile <<EOF |
9f3ef600 NC |
1258 | $extra_dep |
1259 | EOF | |
1260 | ||
5a20539c | 1261 | $spitshell >>$Makefile <<'!NO!SUBS!' |
4318d5a0 | 1262 | |
a774dfe6 RSG |
1263 | .PHONY: printconfig |
1264 | printconfig: | |
34b80e25 | 1265 | @eval `$(RUN_PERL) -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR) |
a774dfe6 | 1266 | |
869a466c JH |
1267 | .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \ |
1268 | realclean _realcleaner clobber _clobber \ | |
6e2cec71 | 1269 | distclean veryclean _verycleaner |
869a466c | 1270 | |
6e2cec71 | 1271 | clean: _tidy _mopup |
70af249b | 1272 | |
6e2cec71 | 1273 | realclean: _realcleaner _mopup |
fcfe1ab7 | 1274 | @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh" |
70af249b | 1275 | |
b37ebb13 | 1276 | _clobber: |
5440bc8e | 1277 | -@rm -f Cross/run-* Cross/to-* Cross/from-* |
0279961e | 1278 | rm -f t/test_state |
bf35c3f6 | 1279 | rm -f config.sh cppstdin Policy.sh extras.lst |
b37ebb13 | 1280 | |
6e2cec71 | 1281 | clobber: _realcleaner _mopup _clobber |
70af249b CS |
1282 | |
1283 | distclean: clobber | |
1284 | ||
2edbd6da | 1285 | # Like distclean but also removes emacs backups and *.orig. |
6e2cec71 | 1286 | veryclean: _verycleaner _mopup _clobber |
b37ebb13 | 1287 | -@rm -f Obsolete Wanted |
2edbd6da | 1288 | |
70af249b CS |
1289 | # Do not 'make _mopup' directly. |
1290 | _mopup: | |
9387abf8 | 1291 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers) |
1ed50e5b | 1292 | -rmdir .depending |
72b3d9b4 | 1293 | -@test -f extra.pods && rm -f `cat extra.pods` |
b4bc034f | 1294 | -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod |
60f0ee9d | 1295 | -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall |
d96ebe2e | 1296 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
9d4d067b | 1297 | -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log |
6a966751 | 1298 | -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs |
93c0359c | 1299 | -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok |
ce0286c6 | 1300 | -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump |
34b80e25 | 1301 | -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl |
fc40bd89 | 1302 | -rm -f config.arch config.over $(DTRACE_H) |
70af249b CS |
1303 | |
1304 | # Do not 'make _tidy' directly. | |
1305 | _tidy: | |
e3f83878 JH |
1306 | -cd pod; $(LDLIBPTH) $(MAKE) clean |
1307 | -cd utils; $(LDLIBPTH) $(MAKE) clean | |
1308 | -cd x2p; $(LDLIBPTH) $(MAKE) clean | |
ff346313 | 1309 | -rm -f lib/Config_git.pl git_version.h |
4318d5a0 | 1310 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
199863e7 | 1311 | $(MINIPERL) make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \ |
a0d0e21e | 1312 | done |
ff68c719 | 1313 | |
2edbd6da | 1314 | _cleaner1: |
4633a7c4 | 1315 | -cd os2; rm -f Makefile |
2edbd6da JH |
1316 | -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN) |
1317 | -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN) | |
1318 | -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN) | |
199863e7 | 1319 | -@if test -f $(MINIPERL_EXE) ; then \ |
61edc683 | 1320 | for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
199863e7 | 1321 | $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \ |
61edc683 NC |
1322 | done ; \ |
1323 | else \ | |
1324 | sh $(CLEAN).sh ; \ | |
1325 | fi | |
1326 | rm -f realclean.sh veryclean.sh | |
0d4cbbcf NC |
1327 | -for file in `find cpan dist ext -name ppport.h` ; do rm -f $$file; done |
1328 | ||
1329 | # Dear POSIX, thanks for making the default to xargs to be | |
1330 | # run once if nothhing is passed in. It is such a great help. | |
2edbd6da | 1331 | |
2ad994b6 | 1332 | # Some systems do not support "?", so keep these files separate. |
2edbd6da | 1333 | _cleaner2: |
2ad994b6 | 1334 | -rm -f core.*perl.*.? t/core.perl.*.? .?*.c |
5033177e | 1335 | rm -f core *perl.core t/core t/*perl.core core.* t/core.* |
f18bc4a8 NC |
1336 | rm -f t/$(PERL_EXE) t/rantests |
1337 | rm -rf t/tmp* | |
2ad994b6 | 1338 | rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) |
a0d0e21e | 1339 | rm -rf $(addedbyconf) |
0eb4e931 | 1340 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old |
c27f7bb1 | 1341 | rm -f $(private) |
ca12659b | 1342 | rm -rf $(unidatafiles) $(unidatadirs) |
a0d0e21e | 1343 | rm -rf lib/auto |
07a6e20d | 1344 | rm -f lib/.exists lib/*/.exists lib/*/*/.exists |
16d20bd9 | 1345 | rm -f h2ph.man pstruct |
a0d0e21e | 1346 | rm -rf .config |
7353f64c | 1347 | rm -f preload |
0f4f294e | 1348 | rm -rf lib/Encode lib/Compress lib/Hash lib/re |
c146e560 | 1349 | rm -rf lib/TAP lib/Module/Pluggable lib/App |
b2685f0c | 1350 | rm -rf lib/mro |
42182ddc | 1351 | rm -rf lib/IO/Compress lib/IO/Uncompress |
fc2730c3 RGS |
1352 | rm -f lib/ExtUtils/ParseXS/t/XSTest.c |
1353 | rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT) | |
1354 | rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX) | |
b6c155fe | 1355 | rm -fr lib/B |
fb598ba5 | 1356 | rm -fr lib/CPAN |
71eaafb1 | 1357 | rm -fr lib/ExtUtils/CBuilder |
d689ebe1 | 1358 | rm -f pod2htmd.tmp |
708a028c | 1359 | rm -rf pod/perlfunc pod/perlipc |
71eaafb1 RGS |
1360 | -rmdir ext/B/lib |
1361 | -rmdir lib/Archive/Tar lib/Archive lib/Attribute | |
476b2fe1 | 1362 | -rmdir lib/CGI lib/Carp |
71eaafb1 RGS |
1363 | -rmdir lib/Data lib/Devel lib/Digest |
1364 | -rmdir lib/ExtUtils/Command lib/ExtUtils/Constant lib/ExtUtils/Liblist lib/ExtUtils/MakeMaker | |
1365 | -rmdir lib/File/Spec lib/Filter/Util lib/Filter | |
1366 | -rmdir lib/I18N/LangTags lib/IO/Socket lib/IO lib/IPC | |
1367 | -rmdir lib/List/Util lib/List | |
1368 | -rmdir lib/Locale/Maketext lib/Locale | |
1369 | -rmdir lib/Log/Message lib/Log | |
1370 | -rmdir lib/Math/Big* lib/Math | |
1371 | -rmdir lib/Memoize lib/MIME | |
1372 | -rmdir lib/Module/Build/Platform lib/Module/Build lib/Module/Load lib/Module | |
1373 | -rmdir lib/Net/FTP lib/Object | |
1374 | -rmdir lib/Parse/CPAN lib/Parse | |
1375 | -rmdir lib/PerlIO/via lib/PerlIO | |
1376 | -rmdir lib/Package lib/Params | |
1377 | -rmdir lib/Pod/Perldoc lib/Pod/Simple lib/Pod/Text | |
1378 | -rmdir lib/Sys lib/Scalar/Util lib/Scalar | |
8cf6f931 | 1379 | -rmdir lib/Term/UI lib/Thread lib/Tie/Hash |
71eaafb1 RGS |
1380 | -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test |
1381 | -rmdir lib/Unicode/Collate | |
1382 | -rmdir lib/XS/APItest lib/XS | |
1383 | -rmdir lib/inc/latest lib/inc | |
1384 | -rmdir lib/autodie/exception lib/autodie lib/encoding lib/threads | |
b0d7393a JH |
1385 | -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a |
1386 | -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a | |
ecfc5424 | 1387 | |
f4db5405 | 1388 | _realcleaner: |
95aef5ce | 1389 | @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean |
2edbd6da JH |
1390 | @$(LDLIBPTH) $(MAKE) _cleaner2 |
1391 | ||
f4db5405 | 1392 | _verycleaner: |
2edbd6da JH |
1393 | @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean |
1394 | @$(LDLIBPTH) $(MAKE) _cleaner2 | |
c94787a5 | 1395 | -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig |
2edbd6da | 1396 | |
869a466c | 1397 | .PHONY: lint |
bf0dfd28 | 1398 | lint: $(c) |
075abff3 | 1399 | rm -f *.ln |
66a1b24b | 1400 | lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c) |
2304df62 | 1401 | |
abcf5ada AL |
1402 | .PHONY: splint |
1403 | splint: $(c) | |
1404 | splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles) | |
1405 | ||
fb73857a | 1406 | # Need to unset during recursion to go out of loop. |
1407 | # The README below ensures that the dependency list is never empty and | |
1408 | # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding. | |
cd4d8a96 | 1409 | |
84902520 | 1410 | MAKEDEPEND = Makefile makedepend |
cd4d8a96 | 1411 | |
fb73857a | 1412 | $(FIRSTMAKEFILE): README $(MAKEDEPEND) |
cd4d8a96 | 1413 | $(MAKE) depend MAKEDEPEND= |
9719c95b NC |
1414 | !NO!SUBS! |
1415 | ||
1416 | for f in $SH; do | |
1417 | file=`SH_to_target $f` | |
1418 | $spitshell >>$Makefile <<!GROK!THIS! | |
a0d0e21e | 1419 | |
9719c95b NC |
1420 | $file: $f config.sh |
1421 | \$(SHELL) $f | |
1422 | !GROK!THIS! | |
1423 | done | |
1424 | ||
1425 | $spitshell >>$Makefile <<'!NO!SUBS!' | |
655635e8 | 1426 | |
869a466c | 1427 | .PHONY: depend |
2304df62 | 1428 | depend: makedepend |
3ae7e562 | 1429 | sh ./makedepend MAKE=$(MAKE) cflags |
2304df62 | 1430 | |
9988b539 | 1431 | .PHONY: test check test_prep test_prep_nodll test_prep_pre \ |
ec81ed5d | 1432 | test_prep_reonly test_tty test-tty test_notty test-notty \ |
e018f8be | 1433 | utest ucheck test.utf8 check.utf8 test.torture torturetest \ |
1de9afcd | 1434 | test.utf16 check.utf16 utest.utf16 ucheck.utf16 \ |
869a466c | 1435 | test.third check.third utest.third ucheck.third test_notty.third \ |
69bfbd2f | 1436 | test.deparse test_notty.deparse test_harness test_harness_notty \ |
f258a656 NC |
1437 | minitest coretest test.taintwarn test-reonly _test |
1438 | ||
1439 | _test: | |
1440 | echo >&2 The _test target is deprecated. Please upgrade your smoker | |
5fb77da4 | 1441 | PERL=./perl $(RUN_TESTS) choose |
869a466c | 1442 | |
ec861bc1 JH |
1443 | # Cannot delegate rebuilding of t/perl to make |
1444 | # to allow interlaced test and minitest | |
3e3baf6d | 1445 | |
1167a30e IZ |
1446 | # Architecture-neutral stuff: |
1447 | ||
1448 | test_prep_pre: preplibrary utilities $(nonxs_ext) | |
1449 | ||
59c72abb | 1450 | test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \ |
9f417383 NC |
1451 | $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \ |
1452 | $(generated_pods) | |
34b80e25 | 1453 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) |
a0ed51b3 | 1454 | |
34b80e25 | 1455 | test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL) |
ec81ed5d | 1456 | $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic |
34b80e25 | 1457 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) |
ec81ed5d | 1458 | |
937aca76 | 1459 | test check: test_prep |
5fb77da4 | 1460 | $(RUN_TESTS) choose |
ec861bc1 | 1461 | |
59c72abb | 1462 | test_tty test-tty: test_prep |
5fb77da4 | 1463 | $(RUN_TESTS) tty |
ec861bc1 | 1464 | |
59c72abb | 1465 | test_notty test-notty: test_prep |
5fb77da4 | 1466 | $(RUN_TESTS) no-tty |
ec861bc1 | 1467 | |
83f0ef60 | 1468 | utest ucheck test.utf8 check.utf8: test_prep |
5fb77da4 | 1469 | TEST_ARGS=-utf8 $(RUN_TESTS) choose |
ec861bc1 | 1470 | |
5a6e071d | 1471 | coretest: test_prep |
5fb77da4 | 1472 | TEST_ARGS=-core $(RUN_TESTS) choose |
5a6e071d | 1473 | |
e018f8be JH |
1474 | # Torture testing |
1475 | ||
1476 | test.torture torturetest: test_prep | |
5fb77da4 | 1477 | TEST_ARGS=-torture $(RUN_TESTS) choose |
e018f8be | 1478 | |
1de9afcd RGS |
1479 | # Targets for UTF16 testing: |
1480 | ||
1481 | minitest.utf16: minitest.prep | |
34b80e25 | 1482 | - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \ |
bb52f720 | 1483 | && $(RUN_PERL) TEST -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t opbasic/*.t op/*.t uni/*.t </dev/tty |
1de9afcd RGS |
1484 | |
1485 | test.utf16 check.utf16: test_prep | |
5fb77da4 | 1486 | TEST_ARGS=-utf16 $(RUN_TESTS) choose |
1de9afcd RGS |
1487 | |
1488 | utest.utf16 ucheck.utf16: test_prep | |
5fb77da4 | 1489 | TEST_ARGS="-utf8 -utf16" $(RUN_TESTS) choose |
1de9afcd | 1490 | |
45ed6be3 JC |
1491 | !NO!SUBS! |
1492 | ||
1493 | case "${osname}${osvers}" in | |
09617314 | 1494 | linux*|darwin*) |
45ed6be3 | 1495 | $spitshell >>$Makefile <<'!NO!SUBS!' |
7a834142 JH |
1496 | # Targets for valgrind testing: |
1497 | ||
1498 | test_prep.valgrind: test_prep perl.valgrind | |
7a834142 JH |
1499 | |
1500 | test.valgrind check.valgrind: test_prep perl.valgrind.config | |
5fb77da4 | 1501 | PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(RUN_TESTS) choose |
7a834142 | 1502 | |
78f158d1 | 1503 | utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config |
5fb77da4 | 1504 | PERL_VALGRIND=1 TEST_ARGS=-utf8 $(RUN_TESTS) choose |
7a834142 | 1505 | |
78f158d1 | 1506 | test_notty.valgrind: test_prep.valgrind perl.valgrind.config |
5fb77da4 | 1507 | PERL_VALGRIND=1 $(RUN_TESTS) no-tty |
45ed6be3 JC |
1508 | !NO!SUBS! |
1509 | ;; | |
1510 | esac | |
1511 | ||
1512 | $spitshell >>$Makefile <<'!NO!SUBS!' | |
7a834142 | 1513 | |
ec861bc1 JH |
1514 | # Targets for Third Degree testing. |
1515 | ||
9b99345a | 1516 | test_prep.third: test_prep perl.third |
e75f8ea9 | 1517 | cd t && (rm -f ./perl.third$(EXE_EXT); $(LNS) ../perl.third$(EXE_EXT) perl.third(EXE_EXT)) |
ec861bc1 | 1518 | |
937aca76 | 1519 | test.third check.third: test_prep.third perl.third |
5fb77da4 | 1520 | PERL=./perl.third PERL_3LOG=1 $(RUN_TESTS) choose |
ec861bc1 | 1521 | |
937aca76 | 1522 | utest.third ucheck.third: test_prep.third perl.third |
5fb77da4 | 1523 | PERL=./perl.third PERL_3LOG=1 TEST_ARGS=-utf8 $(RUN_TESTS) choose |
ec861bc1 | 1524 | |
937aca76 | 1525 | test_notty.third: test_prep.third perl.third |
5fb77da4 | 1526 | PERL=./perl.third PERL_3LOG=1 $(RUN_TESTS) choose |
2304df62 | 1527 | |
35117553 JH |
1528 | # Targets for Deparse testing. |
1529 | ||
1530 | test.deparse: test_prep | |
5fb77da4 | 1531 | TEST_ARGS=-deparse $(RUN_TESTS) choose |
35117553 JH |
1532 | |
1533 | test_notty.deparse: test_prep | |
5fb77da4 | 1534 | TEST_ARGS=-deparse $(RUN_TESTS) no-tty |
35117553 | 1535 | |
b26492ee RGS |
1536 | # Targets to run the test suite with -t |
1537 | ||
1538 | test.taintwarn: test_prep | |
5fb77da4 | 1539 | TEST_ARGS=-taintwarn $(RUN_TESTS) choose |
b26492ee | 1540 | |
1de9afcd | 1541 | minitest.prep: |
8a71e97e | 1542 | -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles) |
4fa3f26e | 1543 | @echo " " |
d96ebe2e | 1544 | @echo "You may see some irrelevant test failures if you have been unable" |
82dee7de | 1545 | @echo "to build lib/Config.pm, or the Unicode data files." |
4fa3f26e | 1546 | @echo " " |
1de9afcd RGS |
1547 | |
1548 | # Can't depend on lib/Config.pm because that might be where miniperl | |
1549 | # is crashing. | |
7353f64c | 1550 | minitest: $(MINIPERL_EXE) minitest.prep |
34b80e25 | 1551 | - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \ |
bb52f720 | 1552 | && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t </dev/tty |
16d20bd9 | 1553 | |
1167a30e IZ |
1554 | # Test via harness |
1555 | ||
59c72abb | 1556 | test_harness test-harness: test_prep |
5fb77da4 | 1557 | TESTFILE=harness $(RUN_TESTS) choose |
1167a30e | 1558 | |
69bfbd2f | 1559 | test_harness_notty: test_prep |
5fb77da4 | 1560 | HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose |
69bfbd2f | 1561 | |
59c72abb | 1562 | test_reonly test-reonly: test_prep_reonly |
5fb77da4 | 1563 | TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose |
4979e288 | 1564 | |
1e547844 JV |
1565 | |
1566 | # Porting tests (well-formedness of pod, manifest, etc) | |
1567 | ||
59c72abb | 1568 | test_porting test-porting: test_prep |
48d97dac | 1569 | cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t |
1e547844 | 1570 | |
fb73857a | 1571 | # Handy way to run perlbug -ok without having to install and run the |
84902520 | 1572 | # installed perlbug. We don't re-run the tests here - we trust the user. |
fb73857a | 1573 | # Please *don't* use this unless all tests pass. |
1d2dff63 | 1574 | # If you want to report test failures, use "make nok" instead. |
869a466c JH |
1575 | |
1576 | .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack | |
1577 | ||
188cd53f | 1578 | ok: utilities |
34b80e25 | 1579 | $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' |
84902520 | 1580 | |
105f9295 | 1581 | okfile: utilities |
34b80e25 | 1582 | $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok |
105f9295 | 1583 | |
890b8eb0 | 1584 | oknack: utilities |
34b80e25 | 1585 | $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A |
890b8eb0 NC |
1586 | |
1587 | okfilenack: utilities | |
34b80e25 | 1588 | $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A |
890b8eb0 | 1589 | |
1d2dff63 | 1590 | nok: utilities |
34b80e25 | 1591 | $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' |
1d2dff63 | 1592 | |
b4e8cfaf | 1593 | nokfile: utilities |
34b80e25 | 1594 | $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok |
b4e8cfaf | 1595 | |
890b8eb0 | 1596 | noknack: utilities |
34b80e25 | 1597 | $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A |
890b8eb0 NC |
1598 | |
1599 | nokfilenack: utilities | |
34b80e25 | 1600 | $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A |
890b8eb0 | 1601 | |
655e5c9e | 1602 | .PHONY: clist hlist |
869a466c | 1603 | |
85e6fe83 | 1604 | clist: $(c) |
92c28edd | 1605 | echo $(c) | tr ' ' $(TRNL) >.clist |
2304df62 | 1606 | |
85e6fe83 | 1607 | hlist: $(h) |
92c28edd | 1608 | echo $(h) | tr ' ' $(TRNL) >.hlist |
2304df62 | 1609 | |
869a466c | 1610 | .PHONY: distcheck |
599a829f | 1611 | distcheck: FORCE |
760ac839 LW |
1612 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
1613 | ||
dde299c1 | 1614 | .PHONY: ctags |
3ee700d1 | 1615 | |
5c36f626 | 1616 | ctags: |
bf799c64 | 1617 | ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h |
5c36f626 | 1618 | |
2304df62 AD |
1619 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
1620 | # If this runs make out of memory, delete /usr/include lines. | |
1621 | !NO!SUBS! | |
1622 | ||
85e6fe83 | 1623 | $eunicefix Makefile |
cd4d8a96 | 1624 | $rm -f $firstmakefile |
5ff3f7a4 GS |
1625 | |
1626 | # Now do any special processing required before building. | |
1627 | ||
1628 | case "$ebcdic" in | |
2d340b60 | 1629 | define) |
5ff3f7a4 | 1630 | xxx='' |
2d340b60 | 1631 | echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2 |
7a66b286 | 1632 | case "$osname" in |
25e9a2e3 | 1633 | os390|posix-bc) |
e9d08790 | 1634 | if cd x2p |
5ff3f7a4 | 1635 | then |
e9d08790 | 1636 | rm -f y.tab.c y.tab.h |
5928ee40 JH |
1637 | case "$osname" in |
1638 | posix-bc) | |
1639 | # we are using two different yaccs in BS2000 Posix! | |
1640 | byacc a2p.y >/dev/null 2>&1 | |
1641 | ;; | |
1642 | *) # e.g. os390 | |
1643 | yacc a2p.y >/dev/null 2>&1 | |
1644 | ;; | |
1645 | esac | |
e9d08790 JH |
1646 | if cmp -s y.tab.c a2p.c |
1647 | then | |
1648 | rm -f y.tab.c | |
1649 | else | |
1650 | echo "a2p.y -> a2p.c" >&2 | |
1651 | mv -f y.tab.c a2p.c | |
1652 | chmod u+w a2p.c | |
1653 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ | |
f1f802f7 | 1654 | -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \ |
e9d08790 JH |
1655 | -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c |
1656 | xxx="$xxx a2p.c" | |
1657 | fi | |
1658 | # In case somebody yacc -d:ed the a2p.y. | |
1659 | if test -f y.tab.h | |
1660 | then | |
1661 | if cmp -s y.tab.h a2p.h | |
1662 | then | |
1663 | rm -f y.tab.h | |
1664 | else | |
1665 | echo "a2p.h -> a2p.h" >&2 | |
1666 | mv -f y.tab.h a2p.h | |
1667 | xxx="$xxx a2p.h" | |
1668 | fi | |
1669 | fi | |
1670 | cd .. | |
5ff3f7a4 | 1671 | fi |
7a66b286 | 1672 | ;; |
aa34f189 | 1673 | *) |
e9d08790 | 1674 | echo "'$osname' is an EBCDIC system I don't know that well." >&4 |
aa34f189 | 1675 | ;; |
fe572743 | 1676 | esac |
5ff3f7a4 GS |
1677 | case "$xxx" in |
1678 | '') echo "No parser files were regenerated. That's okay." >&2 ;; | |
1679 | esac | |
1680 | ;; | |
1681 | esac | |
1682 | ||
075abff3 | 1683 | # ex: set ts=8 sts=4 sw=4 noet: |