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