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 | |
12 | : This forces SH files to create target in same directory as SH file. | |
13 | : This is so that make depend always knows where to find SH derivatives. | |
14 | case "$0" in | |
15 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; | |
16 | esac | |
17 | ||
2304df62 AD |
18 | case "$d_dosuid" in |
19 | *define*) suidperl='suidperl' ;; | |
20 | *) suidperl='';; | |
21 | esac | |
22 | ||
d5d19f97 | 23 | linklibperl='$(LIBPERL)' |
3c321fdc | 24 | shrpldflags='$(LDDLFLAGS)' |
6ee623d5 | 25 | ldlibpth='' |
ac9901e0 | 26 | DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB' |
d96ebe2e | 27 | case "$useshrplib" in |
28 | true) | |
f4db5405 | 29 | # Prefix all runs of 'miniperl' and 'perl' with |
5cf1d1f1 | 30 | # $ldlibpth so that ./perl finds *this* shared libperl. |
c1b49bc0 GS |
31 | case "$LD_LIBRARY_PATH" in |
32 | '') | |
33 | ldlibpth="LD_LIBRARY_PATH=`pwd`";; | |
34 | *) | |
35 | ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";; | |
36 | esac | |
6ee623d5 | 37 | |
d5d19f97 | 38 | pldlflags="$cccdlflags" |
94c41b70 | 39 | static_target='static_pic' |
d96ebe2e | 40 | case "${osname}${osvers}" in |
41 | next4*) | |
3c321fdc | 42 | ld=libtool |
43 | lddlflags="-dynamic -undefined warning -framework System \ | |
44 | -compatibility_version 1 -current_version $patchlevel \ | |
45 | -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@" | |
6ee623d5 | 46 | ;; |
f556e5b9 JH |
47 | rhapsody*|darwin*) |
48 | shrpldflags="${ldflags} -dynamiclib \ | |
c1e7a127 W |
49 | -compatibility_version \ |
50 | ${api_revision}.${api_version}.${api_subversion} \ | |
f556e5b9 | 51 | -current_version \ |
c1e7a127 | 52 | ${revision}.${patchlevel}.${subversion} \ |
f556e5b9 JH |
53 | -install_name \$(shrpdir)/\$@" |
54 | ;; | |
5cf1d1f1 | 55 | cygwin*) |
8736538c AS |
56 | linklibperl="-lperl" |
57 | ;; | |
73d40b3e | 58 | sunos*) |
d5d19f97 UP |
59 | linklibperl="-lperl" |
60 | ;; | |
43039de7 | 61 | netbsd*|freebsd[234]*|openbsd*) |
099685bc JH |
62 | linklibperl="-L. -lperl" |
63 | ;; | |
3c321fdc | 64 | aix*) |
65 | shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp" | |
1553ab04 | 66 | case "$osvers" in |
549a6b10 | 67 | 3*) shrpldflags="$shrpldflags -e _nostart" |
1553ab04 | 68 | ;; |
549a6b10 | 69 | *) shrpldflags="$shrpldflags -b noentry" |
1553ab04 TB |
70 | ;; |
71 | esac | |
9c839522 | 72 | shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib" |
549a6b10 | 73 | linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl" |
3c321fdc | 74 | ;; |
1c7d1a19 GS |
75 | hpux*) |
76 | linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl" | |
46193409 | 77 | ;; |
ac9901e0 | 78 | os390*) |
f2766b05 | 79 | shrpldflags='-W l,dll' |
ac9901e0 PP |
80 | linklibperl='libperl.x' |
81 | DPERL_EXTERNAL_GLOB='' | |
82 | ;; | |
655635e8 | 83 | esac |
5cf1d1f1 JH |
84 | case "$ldlibpthname" in |
85 | '') ;; | |
86 | *) | |
87 | case "$osname" in | |
88 | os2) | |
89 | ldlibpth='' | |
90 | ;; | |
5cf1d1f1 JH |
91 | *) |
92 | eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\"" | |
93 | ;; | |
94 | esac | |
c1b49bc0 GS |
95 | # Strip off any trailing :'s |
96 | ldlibpth=`echo $ldlibpth | sed 's/:*$//'` | |
5cf1d1f1 JH |
97 | ;; |
98 | esac | |
ecfc5424 | 99 | |
9b9c6f34 AE |
100 | case "$ldlibpth" in |
101 | # Protect any spaces | |
102 | *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;; | |
103 | esac | |
6904989c | 104 | |
9b9c6f34 AE |
105 | case "$osname" in |
106 | linux) | |
830717a7 AD |
107 | # If there is a pre-existing $libperl from a previous |
108 | # installation, Linux needs to use LD_PRELOAD to | |
109 | # override the LD_LIBRARY_PATH setting. See the | |
110 | # INSTALL file, under "Building a shared perl library". | |
111 | # If there is no pre-existing $libperl, we don't need | |
112 | # to do anything further. | |
113 | if test -f $archlib/CORE/$libperl; then | |
68e8d60a | 114 | rm -f preload |
d0ae58a5 | 115 | cat <<'EOT' > preload |
fde91635 JH |
116 | #! /bin/sh |
117 | lib=$1 | |
118 | shift | |
119 | test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD" | |
120 | exec "$@" | |
121 | EOT | |
9b9c6f34 AE |
122 | chmod 755 preload |
123 | ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl" | |
830717a7 AD |
124 | fi |
125 | ;; | |
9b9c6f34 AE |
126 | os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth" |
127 | ;; | |
60d79001 | 128 | esac |
9b9c6f34 | 129 | |
60d79001 | 130 | ;; |
9b9c6f34 AE |
131 | |
132 | *) pldlflags='' | |
133 | static_target='static' | |
b1f5ad7d JH |
134 | ;; |
135 | esac | |
136 | ||
a0d0e21e LW |
137 | : Prepare dependency lists for Makefile. |
138 | dynamic_list=' ' | |
139 | for f in $dynamic_ext; do | |
140 | : the dependency named here will never exist | |
ecfc5424 | 141 | base=`echo "$f" | sed 's/.*\///'` |
75f92628 | 142 | dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext" |
a0d0e21e LW |
143 | done |
144 | ||
145 | static_list=' ' | |
a0d0e21e LW |
146 | for f in $static_ext; do |
147 | base=`echo "$f" | sed 's/.*\///'` | |
cd4d8a96 | 148 | static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)" |
a0d0e21e LW |
149 | done |
150 | ||
4318d5a0 GB |
151 | nonxs_list=' ' |
152 | for f in $nonxs_ext; do | |
153 | base=`echo "$f" | sed 's/.*\///'` | |
154 | nonxs_list="$nonxs_list ext/$f/pm_to_blib" | |
155 | done | |
156 | ||
f1f802f7 JH |
157 | # Handle the usage of different yaccs in posix-bc (During Configure we |
158 | # us yacc for perly.y and byacc for a2p.y. The makefiles must use the | |
159 | # same configuration for run_byacc!): | |
160 | case "$osname" in | |
161 | posix-bc) | |
162 | byacc=$yacc | |
163 | ;; | |
164 | esac | |
165 | ||
2304df62 | 166 | echo "Extracting Makefile (with variable substitutions)" |
655635e8 | 167 | $spitshell >Makefile <<!GROK!THIS! |
a0d0e21e | 168 | # Makefile.SH |
85e6fe83 LW |
169 | # This file is derived from Makefile.SH. Any changes made here will |
170 | # be lost the next time you run Configure. | |
655635e8 | 171 | # Makefile is used to generate $firstmakefile. The only difference |
172 | # is that $firstmakefile has the dependencies filled in at the end. | |
2304df62 | 173 | # |
fed7345c | 174 | # |
2304df62 AD |
175 | # I now supply perly.c with the kits, so don't remake perly.c without byacc |
176 | BYACC = $byacc | |
177 | CC = $cc | |
232e078e | 178 | LD = $ld |
16d20bd9 | 179 | |
2304df62 AD |
180 | LDFLAGS = $ldflags |
181 | CLDFLAGS = $ldflags | |
85e6fe83 | 182 | |
2304df62 AD |
183 | mallocsrc = $mallocsrc |
184 | mallocobj = $mallocobj | |
85e6fe83 | 185 | LNS = $lns |
4c901d04 JH |
186 | # NOTE: some systems don't grok "cp -f". XXX Configure test needed? |
187 | CPS = $cp | |
2304df62 | 188 | RMS = rm -f |
85e6fe83 LW |
189 | ranlib = $ranlib |
190 | ||
16d20bd9 AD |
191 | # The following are mentioned only to make metaconfig include the |
192 | # appropriate questions in Configure. If you want to change these, | |
8e07c86e | 193 | # edit config.sh instead, or specify --man1dir=/wherever on |
16d20bd9 AD |
194 | # installman commandline. |
195 | bin = $installbin | |
196 | scriptdir = $scriptdir | |
d96ebe2e | 197 | shrpdir = $archlibexp/CORE |
16d20bd9 AD |
198 | privlib = $installprivlib |
199 | man1dir = $man1dir | |
200 | man1ext = $man1ext | |
201 | man3dir = $man3dir | |
202 | man3ext = $man3ext | |
203 | ||
85e6fe83 LW |
204 | # The following are used to build and install shared libraries for |
205 | # dynamic loading. | |
206 | LDDLFLAGS = $lddlflags | |
3c321fdc | 207 | SHRPLDFLAGS = $shrpldflags |
85e6fe83 | 208 | CCDLFLAGS = $ccdlflags |
a0d0e21e | 209 | DLSUFFIX = .$dlext |
ecfc5424 | 210 | PLDLFLAGS = $pldlflags |
d96ebe2e | 211 | LIBPERL = $libperl |
d5d19f97 | 212 | LLIBPERL= $linklibperl |
ecfc5424 | 213 | SHRPENV = $shrpenv |
a0d0e21e | 214 | |
94c41b70 AD |
215 | # Static targets are ordinarily built without CCCDLFLAGS. However, |
216 | # if building a shared libperl.so that might later be linked into | |
217 | # another application, then it might be appropriate to also build static | |
218 | # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC | |
219 | # for GNU cc). This is handled by ext/util/make_ext. | |
220 | STATIC = $static_target | |
221 | ||
6ee623d5 | 222 | # The following is used to include the current directory in |
5cf1d1f1 | 223 | # the dynamic loader path you are building a shared libperl. |
6ee623d5 GS |
224 | LDLIBPTH = $ldlibpth |
225 | ||
a0d0e21e LW |
226 | dynamic_ext = $dynamic_list |
227 | static_ext = $static_list | |
4318d5a0 GB |
228 | nonxs_ext = $nonxs_list |
229 | ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext) | |
cd4d8a96 | 230 | DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) |
2304df62 | 231 | |
9c839522 | 232 | libs = $perllibs $cryptlib |
2304df62 | 233 | |
443a5b98 | 234 | public = perl\$(EXE_EXT) $suidperl utilities translators |
2304df62 AD |
235 | |
236 | shellflags = $shellflags | |
237 | ||
d96ebe2e | 238 | # This is set to MAKE=$make if your $make command doesn't |
239 | # do it for you. | |
240 | $make_set_make | |
4633a7c4 | 241 | |
1fef16b3 JH |
242 | # Mention $gmake here so it gets probed for by Configure. |
243 | ||
dfe9444c | 244 | # These variables may need to be manually set for non-Unix systems. |
ccc7f9b3 | 245 | AR = $full_ar |
dfe9444c AD |
246 | EXE_EXT = $_exe |
247 | LIB_EXT = $_a | |
248 | OBJ_EXT = $_o | |
249 | PATH_SEP = $p_ | |
4633a7c4 LW |
250 | |
251 | FIRSTMAKEFILE = $firstmakefile | |
252 | ||
253 | # Any special object files needed by this architecture, e.g. os2/os2.obj | |
254 | ARCHOBJS = $archobjs | |
255 | ||
89ada9f2 | 256 | .SUFFIXES: .c \$(OBJ_EXT) .i .s |
cd4d8a96 | 257 | |
d96ebe2e | 258 | # grrr |
259 | SHELL = $sh | |
655635e8 | 260 | |
28e8609d JH |
261 | # how to tr(anslate) newlines |
262 | TRNL = '$trnl' | |
263 | ||
82240bfc JH |
264 | OPTIMIZE = $optimize |
265 | ||
3343e82c JH |
266 | EXTRAS = $extras |
267 | ||
bf35c3f6 JH |
268 | INSTALLPREFIXEXP = $prefix |
269 | ||
d56c5707 | 270 | !GROK!THIS! |
b7b35fc2 | 271 | # not used by Makefile but by installperl; |
d56c5707 JH |
272 | # mentioned here so that metaconfig picks these up |
273 | # $installusrbinperl | |
274 | # $versiononly | |
b7b35fc2 | 275 | |
8170cb12 JH |
276 | case "${osname}:${osvers}" in |
277 | darwin:*) | |
278 | $spitshell >>Makefile <<EOF | |
279 | ||
280 | # Your locales are broken (osname $osname, osvers $osvers) | |
281 | # and to avoid the numerous | |
282 | # perl: warning: Setting locale failed. | |
283 | # warnings during the build process we reset the locale variables. | |
284 | ||
285 | LC_ALL=C | |
286 | LANG=C | |
287 | LANGUAGE=C | |
288 | EOF | |
289 | ;; | |
290 | esac | |
2304df62 | 291 | |
85e6fe83 | 292 | ## In the following dollars and backticks do not need the extra backslash. |
2304df62 AD |
293 | $spitshell >>Makefile <<'!NO!SUBS!' |
294 | ||
75550b4e | 295 | CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@` |
89ada9f2 | 296 | |
75550b4e | 297 | CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<` |
2304df62 | 298 | |
abae58a6 | 299 | private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm |
2304df62 | 300 | |
4633a7c4 LW |
301 | # Files to be built with variable substitution before miniperl |
302 | # is available. | |
303 | sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \ | |
4755096e | 304 | makedir.SH myconfig.SH writemain.SH pod/Makefile.SH |
4633a7c4 | 305 | |
3ebb1980 | 306 | shextract = Makefile cflags config.h makeaperl makedepend \ |
4755096e | 307 | makedir myconfig writemain pod/Makefile |
4633a7c4 LW |
308 | |
309 | # Files to be built with variable substitution after miniperl is | |
310 | # available. Dependencies handled manually below (for now). | |
2304df62 | 311 | |
efb12ca0 | 312 | pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \ |
41630250 | 313 | pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL |
4633a7c4 | 314 | |
4755096e | 315 | # lib/lib.pm is not listed here because it has a rule of its own. |
efb12ca0 | 316 | plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \ |
41630250 | 317 | pod/pod2usage pod/podchecker pod/podselect |
4633a7c4 | 318 | |
4755096e | 319 | addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct |
2304df62 | 320 | |
fed7345c | 321 | h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h |
dd2155a4 DM |
322 | h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h |
323 | h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h | |
219f41b1 | 324 | h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h |
68795e93 | 325 | h5 = utf8.h warnings.h |
33b839e2 | 326 | h = $(h1) $(h2) $(h3) $(h4) $(h5) |
2304df62 | 327 | |
10bc17b6 | 328 | c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c |
a0ed51b3 | 329 | c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c |
dd2155a4 | 330 | c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c |
68795e93 | 331 | c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c |
2304df62 | 332 | |
09bef843 | 333 | c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c |
2304df62 | 334 | |
dd2155a4 | 335 | obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) |
cd4d8a96 | 336 | 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) |
68795e93 | 337 | obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT) |
655635e8 | 338 | |
4633a7c4 | 339 | obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
2304df62 AD |
340 | |
341 | lintflags = -hbvxac | |
342 | ||
cd4d8a96 | 343 | .c$(OBJ_EXT): |
d96ebe2e | 344 | $(CCCMD) $(PLDLFLAGS) $*.c |
2304df62 | 345 | |
89ada9f2 JH |
346 | .c.i: |
347 | $(CCCMDSRC) -E $*.c > $*.i | |
348 | ||
349 | .c.s: | |
350 | $(CCCMDSRC) -S $*.c | |
351 | ||
443a5b98 | 352 | all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make |
248e23d9 | 353 | @echo " "; |
fcfe1ab7 | 354 | @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." |
909b3858 | 355 | |
b2c07774 | 356 | .PHONY: all compile translators utilities |
b27471b9 | 357 | |
6ee623d5 GS |
358 | compile: all |
359 | echo "testing compilation" > testcompile; | |
360 | cd utils; $(MAKE) compile; | |
f4db5405 | 361 | cd x2p; $(MAKE) compile; |
6ee623d5 GS |
362 | cd pod; $(MAKE) compile; |
363 | ||
443a5b98 | 364 | translators: miniperl$(EXE_EXT) lib/Config.pm FORCE |
6ee623d5 | 365 | @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all |
8e07c86e | 366 | |
443a5b98 | 367 | utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE |
6ee623d5 | 368 | @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all |
909b3858 | 369 | |
370 | ||
16d20bd9 AD |
371 | # This is now done by installman only if you actually want the man pages. |
372 | # @echo " "; echo " Making docs"; cd pod; $(MAKE) all; | |
85e6fe83 LW |
373 | |
374 | # Phony target to force checking subdirectories. | |
e50aee73 | 375 | # Apparently some makes require an action for the FORCE target. |
869a466c | 376 | .PHONY: FORCE |
85e6fe83 | 377 | FORCE: |
4633a7c4 | 378 | @sh -c true |
ac9901e0 PP |
379 | !NO!SUBS! |
380 | $spitshell >>Makefile <<!GROK!THIS! | |
85e6fe83 | 381 | |
4ba7095c JH |
382 | # We do a copy of the op.c instead of a symlink because gcc gets huffy |
383 | # if we have a symlink forest to another disk (it complains about too many | |
384 | # levels of symbolic links, even if we have only two) | |
385 | ||
ac9901e0 PP |
386 | opmini\$(OBJ_EXT): op.c config.h |
387 | \$(RMS) opmini.c | |
388 | \$(CPS) op.c opmini.c | |
389 | \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c | |
390 | \$(RMS) opmini.c | |
bd0dd1d8 | 391 | |
ac9901e0 PP |
392 | !GROK!THIS! |
393 | $spitshell >>Makefile <<'!NO!SUBS!' | |
517e7c64 | 394 | miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h |
92c28edd | 395 | $(CCCMD) $(PLDLFLAGS) $*.c |
ecfc5424 | 396 | |
92c28edd | 397 | perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE) |
e8827f64 | 398 | sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp |
92c28edd | 399 | sh mv-if-diff writemain.tmp perlmain.c |
85e6fe83 | 400 | |
e31d4690 PP |
401 | !NO!SUBS! |
402 | case "$osname" in | |
403 | cygwin) | |
404 | ;; # Let cygwin/Makefile.SHs do its work. | |
405 | *) | |
406 | $spitshell >>Makefile <<'!NO!SUBS!' | |
cd4d8a96 | 407 | perlmain$(OBJ_EXT): perlmain.c |
92c28edd | 408 | $(CCCMD) $(PLDLFLAGS) $*.c |
85e6fe83 | 409 | |
e31d4690 PP |
410 | !NO!SUBS! |
411 | ;; | |
412 | esac | |
413 | $spitshell >>Makefile <<'!NO!SUBS!' | |
a0d0e21e LW |
414 | # The file ext.libs is a list of libraries that must be linked in |
415 | # for static extensions, e.g. -lm -lgdbm, etc. The individual | |
416 | # static extension Makefile's add to it. | |
fed7345c | 417 | ext.libs: $(static_ext) |
a0d0e21e | 418 | -@test -f ext.libs || touch ext.libs |
85e6fe83 | 419 | |
ecfc5424 | 420 | !NO!SUBS! |
599a829f | 421 | |
d96ebe2e | 422 | # How to build libperl. This is still rather convoluted. |
599a829f | 423 | # Load up custom Makefile.SH fragment for shared loading and executables: |
8736538c | 424 | case "$osname" in |
8736538c AS |
425 | *) |
426 | Makefile_s="$osname/Makefile.SHs" | |
427 | ;; | |
428 | esac | |
429 | ||
549a6b10 JH |
430 | case "$osname" in |
431 | aix) | |
432 | $spitshell >>Makefile <<!GROK!THIS! | |
9c839522 | 433 | LIBS = $perllibs |
5f9d9a17 ME |
434 | # In AIX we need to change this for building Perl itself from |
435 | # its earlier definition (which is for building external | |
436 | # extensions *after* Perl has been built and installed) | |
437 | CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'` | |
549a6b10 JH |
438 | |
439 | !GROK!THIS! | |
440 | case "$useshrplib" in | |
441 | define|true|[yY]*) | |
442 | $spitshell >>Makefile <<'!NO!SUBS!' | |
443 | ||
444 | LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT) | |
445 | MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT) | |
446 | ||
447 | $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj) | |
448 | $(RMS) $(LIBPERL_NONSHR) | |
449 | $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj) | |
450 | ||
bd0dd1d8 | 451 | $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) |
a7089531 GS |
452 | $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \ |
453 | opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS) | |
549a6b10 JH |
454 | |
455 | MINIPERLEXP = $(MINIPERL_NONSHR) | |
456 | ||
457 | LIBPERLEXPORT = perl.exp | |
458 | ||
459 | !NO!SUBS! | |
460 | ||
461 | ;; | |
462 | *) | |
463 | $spitshell >>Makefile <<'!NO!SUBS!' | |
464 | MINIPERLEXP = miniperl$(EXE_EXT) | |
465 | ||
466 | PERLEXPORT = perl.exp | |
467 | ||
468 | !NO!SUBS! | |
469 | ;; | |
470 | esac | |
471 | $spitshell >>Makefile <<'!NO!SUBS!' | |
472 | perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) | |
5c728af0 | 473 | ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp |
549a6b10 JH |
474 | sh mv-if-diff perl.exp.tmp perl.exp |
475 | ||
476 | !NO!SUBS! | |
477 | ;; | |
2c2d71f5 JH |
478 | os2) |
479 | $spitshell >>Makefile <<'!NO!SUBS!' | |
480 | MINIPERLEXP = miniperl | |
481 | ||
482 | perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map | |
5c728af0 | 483 | ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp |
2c2d71f5 JH |
484 | sh mv-if-diff perl.exp.tmp perl5.def |
485 | ||
486 | !NO!SUBS! | |
487 | ;; | |
549a6b10 JH |
488 | esac |
489 | ||
8736538c AS |
490 | if test -r $Makefile_s ; then |
491 | . $Makefile_s | |
d96ebe2e | 492 | $spitshell >>Makefile <<!GROK!THIS! |
cd4d8a96 | 493 | |
8736538c | 494 | Makefile: $Makefile_s |
cd4d8a96 | 495 | !GROK!THIS! |
496 | else | |
f0efd8cf | 497 | $spitshell >>Makefile <<'!NO!SUBS!' |
549a6b10 | 498 | $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT) |
9c9e9f08 | 499 | !NO!SUBS! |
d96ebe2e | 500 | case "$useshrplib" in |
501 | true) | |
502 | $spitshell >>Makefile <<'!NO!SUBS!' | |
6bdd71ef | 503 | $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs) |
3c321fdc | 504 | !NO!SUBS! |
505 | case "$osname" in | |
506 | aix) | |
507 | $spitshell >>Makefile <<'!NO!SUBS!' | |
28e8609d | 508 | rm -f libperl$(OBJ_EXT) |
3c321fdc | 509 | mv $@ libperl$(OBJ_EXT) |
510 | $(AR) qv $(LIBPERL) libperl$(OBJ_EXT) | |
ecfc5424 | 511 | !NO!SUBS! |
3c321fdc | 512 | ;; |
513 | esac | |
d96ebe2e | 514 | ;; |
515 | *) | |
516 | $spitshell >>Makefile <<'!NO!SUBS!' | |
517 | rm -f $(LIBPERL) | |
518 | $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj) | |
519 | @$(ranlib) $(LIBPERL) | |
655635e8 | 520 | !NO!SUBS! |
d96ebe2e | 521 | ;; |
522 | esac | |
599a829f IZ |
523 | $spitshell >>Makefile <<'!NO!SUBS!' |
524 | ||
525 | # How to build executables. | |
526 | ||
527 | # The $& notation tells Sequent machines that it can do a parallel make, | |
528 | # and is harmless otherwise. | |
529 | # The miniperl -w -MExporter line is a basic cheap test to catch errors | |
530 | # before make goes on to run preplibrary and then MakeMaker on extensions. | |
531 | # This is very handy because later errors are often caused by miniperl | |
532 | # build problems but that's not obvious to the novice. | |
533 | # The Module used here must not depend on Config or any extensions. | |
534 | ||
ecfb2188 GS |
535 | !NO!SUBS! |
536 | ||
537 | case "${osname}${osvers}" in | |
8fdf96e1 | 538 | aix*) |
ecfb2188 | 539 | $spitshell >>Makefile <<'!NO!SUBS!' |
bd0dd1d8 | 540 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) |
8fdf96e1 JH |
541 | $(CC) -o miniperl $(CLDFLAGS) \ |
542 | `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \ | |
ecfb2188 | 543 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs) |
bd0dd1d8 | 544 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
ecfb2188 GS |
545 | !NO!SUBS! |
546 | ;; | |
8fdf96e1 | 547 | beos*|next4*) |
535d2540 JH |
548 | $spitshell >>Makefile <<'!NO!SUBS!' |
549 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) | |
8fdf96e1 | 550 | $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \ |
535d2540 JH |
551 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs) |
552 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | |
553 | !NO!SUBS! | |
554 | ;; | |
cb3fc426 | 555 | darwin*) |
986530ea JH |
556 | case "$osvers" in |
557 | [1-6].*) ;; | |
558 | *) case "$ldflags" in | |
559 | *"-flat_namespace"*) ;; | |
560 | *) # to allow opmini.o to override stuff in libperl.dylib | |
69625aa9 JH |
561 | $spitshell >>Makefile <<!NO!SUBS! |
562 | NAMESPACEFLAGS = -force_flat_namespace | |
563 | !NO!SUBS! | |
986530ea JH |
564 | ;; |
565 | esac | |
566 | ;; | |
cb3fc426 JH |
567 | esac |
568 | $spitshell >>Makefile <<'!NO!SUBS!' | |
569 | miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) | |
570 | -@rm -f miniperl.xok | |
69625aa9 | 571 | $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \ |
cb3fc426 JH |
572 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs) |
573 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | |
cb3fc426 JH |
574 | !NO!SUBS! |
575 | ;; | |
ecfb2188 GS |
576 | *) |
577 | $spitshell >>Makefile <<'!NO!SUBS!' | |
443a5b98 | 578 | miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) |
93c0359c | 579 | -@rm -f miniperl.xok |
f913803b | 580 | $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \ |
a7089531 | 581 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs) |
bd0dd1d8 | 582 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest |
ecfb2188 GS |
583 | !NO!SUBS! |
584 | ;; | |
585 | esac | |
586 | ||
587 | $spitshell >>Makefile <<'!NO!SUBS!' | |
599a829f | 588 | |
443a5b98 | 589 | perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
93c0359c | 590 | -@rm -f miniperl.xok |
f913803b | 591 | $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f | 592 | |
4ae3d70a JH |
593 | # Purify/Quantify Perls. |
594 | ||
443a5b98 | 595 | pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
f913803b | 596 | $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f | 597 | |
443a5b98 | 598 | purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
f913803b | 599 | $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
dbadb36a | 600 | |
443a5b98 | 601 | quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
f913803b | 602 | $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 | 603 | |
7a834142 JH |
604 | # Valgrind perl (currently Linux only) |
605 | ||
606 | perl.valgrind.config: config.sh | |
607 | @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..." | |
608 | @$(MAKE) perl.config.dashg | |
609 | @echo "Checking usemymalloc='n' in config.sh..." | |
610 | @grep "^usemymalloc=" config.sh | |
611 | @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 | |
612 | @echo "And of course you have to have valgrind..." | |
71152cd8 | 613 | valgrind ./perl -e 1 2>/dev/null || exit 1 |
7a834142 | 614 | |
4ae3d70a JH |
615 | # Third Degree Perl (Tru64 only) |
616 | ||
719561de | 617 | perl.config.dashg: |
83f0ef60 JH |
618 | @echo "Checking optimize='-g' in config.sh..." |
619 | @grep "^optimize=" config.sh | |
620 | @grep "^optimize='-g'" config.sh >/dev/null || exit 1 | |
4ae3d70a JH |
621 | |
622 | perl.third.config: config.sh | |
623 | @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..." | |
6e36760b | 624 | @$(MAKE) perl.config.dashg |
83f0ef60 JH |
625 | @echo "Checking usemymalloc='n' in config.sh..." |
626 | @grep "^usemymalloc=" config.sh | |
627 | @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 | |
170ba846 | 628 | |
412c6516 | 629 | perl.third: /usr/bin/atom perl.third.config perl |
dca31ef4 | 630 | atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl |
83f0ef60 | 631 | @echo "Now you may run perl.third and then study perl.3log." |
15615bfd | 632 | |
4ae3d70a JH |
633 | # Pixie Perls (Tru64 and IRIX only) |
634 | ||
719561de | 635 | perl.pixie.config: config.sh |
4ae3d70a | 636 | @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..." |
6e36760b | 637 | @$(MAKE) perl.config.dashg |
4ae3d70a | 638 | |
719561de | 639 | perl.pixie.atom: /usr/bin/atom perl |
4ae3d70a JH |
640 | atom -tool pixie -L. -all -toolargs="-quiet" perl |
641 | ||
642 | perl.pixie.irix: perl | |
643 | pixie perl | |
644 | ||
719561de | 645 | perl.pixie: /usr/bin/pixie perl.pixie.config perl |
4ae3d70a JH |
646 | if test -x /usr/bin/atom; then \ |
647 | $(MAKE) perl.pixie.atom; \ | |
648 | else \ | |
649 | $(MAKE) perl.pixie.irix; \ | |
650 | fi | |
83f0ef60 JH |
651 | @echo "Now you may run perl.pixie and then run pixie." |
652 | ||
653 | # Gprof Perl | |
654 | ||
655 | perl.config.dashpg: | |
656 | @echo "Checking optimize='-pg' in config.sh..." | |
657 | @grep "^optimize=" config.sh | |
64778e5f | 658 | @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1 |
83f0ef60 JH |
659 | |
660 | perl.gprof.config: config.sh | |
661 | @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..." | |
662 | @$(MAKE) perl.config.dashpg | |
663 | ||
664 | perl.gprof: /usr/bin/gprof perl.gprof.config | |
64778e5f | 665 | @-rm -f perl |
51a35ef1 | 666 | $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl |
83f0ef60 | 667 | @echo "Now you may run perl.gprof and then run gprof perl.gprof." |
4ae3d70a | 668 | |
51a35ef1 JH |
669 | # Gcov Perl |
670 | ||
671 | perl.config.gcov: | |
672 | @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..." | |
673 | @echo "Checking gccversion in config.sh..." | |
674 | @grep "^gccversion=" config.sh | |
675 | @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1 | |
676 | @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..." | |
677 | @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..." | |
678 | @grep "^ccflags=" config.sh | |
679 | @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1 | |
680 | ||
681 | perl.gcov: perl.config.gcov | |
682 | @-rm -f perl | |
683 | $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl | |
684 | @echo "Now you may run perl.gcov and then run gcov some.c." | |
685 | ||
f946bb38 JH |
686 | # Microperl. This is just a convenience thing if one happens to |
687 | # build also the full Perl and therefore the real big Makefile: | |
f4db5405 | 688 | # usually one should manually explicitly issue the below command. |
f946bb38 | 689 | |
869a466c | 690 | .PHONY: microperl |
f946bb38 JH |
691 | microperl: |
692 | $(MAKE) -f Makefile.micro | |
693 | ||
2304df62 AD |
694 | # This version, if specified in Configure, does ONLY those scripts which need |
695 | # set-id emulation. Suidperl must be setuid root. It contains the "taint" | |
696 | # checks as well as the special code to validate that the script in question | |
697 | # has been invoked correctly. | |
698 | ||
443a5b98 | 699 | suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT) |
f913803b | 700 | $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 | 701 | |
599a829f IZ |
702 | !NO!SUBS! |
703 | ||
704 | fi | |
705 | ||
706 | $spitshell >>Makefile <<'!NO!SUBS!' | |
707 | ||
bf0dfd28 | 708 | sperl$(OBJ_EXT): perl.c $(h) |
2304df62 | 709 | $(RMS) sperl.c |
85e6fe83 | 710 | $(LNS) perl.c sperl.c |
d96ebe2e | 711 | $(CCCMD) -DIAMSUID sperl.c |
2304df62 AD |
712 | $(RMS) sperl.c |
713 | ||
fec02dd3 AD |
714 | # We have to call our ./makedir because Ultrix 4.3 make can't handle the line |
715 | # test -d lib/auto || mkdir lib/auto | |
5b7e50ea | 716 | # We need to autosplit in two steps because VOS can't handle so many args |
fec02dd3 | 717 | # |
869a466c | 718 | .PHONY: preplibrary |
a64c954a | 719 | preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL) |
cd4d8a96 | 720 | @sh ./makedir lib/auto |
a0d0e21e | 721 | @echo " AutoSplitting perl library" |
92c28edd | 722 | $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ |
5b7e50ea PG |
723 | autosplit_lib_modules(@ARGV)' lib/*.pm |
724 | $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ | |
725 | autosplit_lib_modules(@ARGV)' lib/*/*.pm | |
abae58a6 | 726 | $(MAKE) lib/re.pm |
2304df62 | 727 | |
75f92628 | 728 | # Take care to avoid modifying lib/Config.pm without reason |
f4db5405 | 729 | # (If trying to create a new port and having problems with the configpm script, |
fb73857a | 730 | # try 'make minitest' and/or commenting out the tests at the end of configpm.) |
ab57a4d7 | 731 | lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary |
d2212429 | 732 | $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp |
92c28edd | 733 | sh mv-if-diff configpm.tmp $@ |
2304df62 | 734 | |
443a5b98 | 735 | lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm |
e8827f64 | 736 | $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp |
92c28edd | 737 | sh mv-if-diff minimod.tmp $@ |
abae58a6 | 738 | -touch lib/ExtUtils/Miniperl.pm |
fed7345c | 739 | |
92c28edd | 740 | lib/re.pm: ext/re/re.pm |
abae58a6 | 741 | cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm |
7cfc0d09 | 742 | |
180c42e0 | 743 | $(plextract): miniperl$(EXE_EXT) lib/Config.pm x2p/s2p |
42c30c63 | 744 | @-rm -f $@ |
92c28edd | 745 | $(LDLIBPTH) ./miniperl -Ilib $@.PL |
72b3d9b4 | 746 | |
d4d4a62f | 747 | x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL |
36cf9c44 | 748 | cd x2p; $(LDLIBPTH) $(MAKE) s2p |
180c42e0 | 749 | |
443a5b98 | 750 | lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm |
42c30c63 | 751 | @-rm -f $@ |
4755096e GS |
752 | $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL |
753 | ||
443a5b98 | 754 | extra.pods: miniperl$(EXE_EXT) |
fec93702 | 755 | -@test -f extra.pods && rm -f `cat extra.pods` |
72b3d9b4 | 756 | -@rm -f extra.pods |
b4bc034f | 757 | -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \ |
72b3d9b4 | 758 | nx=`echo $$x | sed -e "s/README\.//"`; \ |
40096396 | 759 | cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \ |
72b3d9b4 GS |
760 | echo "pod/perl"$$nx".pod" >> extra.pods ; \ |
761 | done | |
762 | ||
443a5b98 | 763 | extras.make: perl$(EXE_EXT) |
2a30c5e0 | 764 | -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst` |
bf35c3f6 | 765 | |
443a5b98 | 766 | extras.test: perl$(EXE_EXT) |
2a30c5e0 | 767 | -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst` |
bf35c3f6 | 768 | |
443a5b98 | 769 | extras.install: perl$(EXE_EXT) |
2a30c5e0 | 770 | -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst` |
bf35c3f6 | 771 | |
869a466c | 772 | .PHONY: install install-strip install-all install-verbose install-silent \ |
5e2f386f | 773 | no-install install.perl install.man install.html |
869a466c | 774 | |
0cf51544 JH |
775 | META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm |
776 | $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta | |
777 | ||
f556e5b9 JH |
778 | install-strip: |
779 | $(MAKE) STRIPFLAGS=-s install | |
780 | ||
adbebc0b | 781 | install install-all: |
c458b76c | 782 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) |
c77385cf | 783 | |
4ad019ef A |
784 | install-verbose: |
785 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V | |
c458b76c | 786 | |
4ad019ef | 787 | install-silent: |
8d0b2130 | 788 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S |
4ad019ef A |
789 | |
790 | no-install: | |
791 | $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n | |
16d20bd9 | 792 | |
bf35c3f6 | 793 | install.perl: all installperl |
6ee623d5 GS |
794 | if [ -n "$(COMPILE)" ]; \ |
795 | then \ | |
796 | cd utils; $(MAKE) compile; \ | |
797 | cd ../x2p; $(MAKE) compile; \ | |
798 | cd ../pod; $(MAKE) compile; \ | |
83673e1f | 799 | else :; \ |
6ee623d5 | 800 | fi |
5a9231b0 | 801 | $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) |
bf35c3f6 | 802 | $(MAKE) extras.install |
a0d0e21e | 803 | |
b1a1e9f1 | 804 | install.man: all installman |
5a9231b0 | 805 | $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS) |
16d20bd9 | 806 | |
84902520 TB |
807 | # XXX Experimental. Hardwired values, but useful for testing. |
808 | # Eventually Configure could ask for some of these values. | |
809 | install.html: all installhtml | |
40096396 | 810 | -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd .. |
6ee623d5 | 811 | $(LDLIBPTH) ./perl installhtml \ |
84902520 TB |
812 | --podroot=. --podpath=. --recurse \ |
813 | --htmldir=$(privlib)/html \ | |
814 | --htmlroot=$(privlib)/html \ | |
815 | --splithead=pod/perlipc \ | |
816 | --splititem=pod/perlfunc \ | |
817 | --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \ | |
818 | --verbose | |
819 | ||
16d20bd9 | 820 | |
a0d0e21e | 821 | # I now supply perly.c with the kits, so the following section is |
56febc5e AD |
822 | # used only if you force byacc to run by saying |
823 | # make run_byacc | |
824 | # Since we patch up the byacc output, the perly.fixer script needs | |
825 | # to run with precisely the same version of byacc as I use. You | |
826 | # normally shouldn't remake perly.[ch]. | |
827 | ||
869a466c JH |
828 | .PHONY: check_byacc run_byacc |
829 | ||
001465dc JH |
830 | check_byacc: |
831 | @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2' | |
832 | ||
833 | run_byacc: FORCE check_byacc | |
56febc5e | 834 | $(BYACC) -d perly.y |
cecd0ad1 | 835 | -chmod 664 perly.c perly.h |
56febc5e | 836 | sh $(shellflags) ./perly.fixer y.tab.c perly.c |
55497cff | 837 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
838 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c | |
ebb99254 | 839 | sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h |
55497cff | 840 | cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h |
2b21cd67 | 841 | perl -i.old perlyline.pl perly.c |
fb73857a | 842 | chmod 664 vms/perly_c.vms vms/perly_h.vms |
843 | perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms | |
56febc5e AD |
844 | |
845 | # We don't want to regenerate perly.c and perly.h, but they might | |
846 | # appear out-of-date after a patch is applied or a new distribution is | |
847 | # made. | |
92c28edd | 848 | perly.c: perly.y |
b233458b JH |
849 | -@sh -c true |
850 | ||
92c28edd | 851 | perly.h: perly.y |
b233458b JH |
852 | -@sh -c true |
853 | ||
9fec149b JH |
854 | PERLYVMS = vms/perly_c.vms vms/perly_h.vms |
855 | ||
856 | $(PERLYVMS): perly.c perly.h vms/vms_yfix.pl | |
857 | perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms | |
858 | ||
bd656b61 | 859 | # No compat3.sym here since and including the 5.004_50. |
e4d5a464 | 860 | # No interp.sym since 5.005_03. |
22c35a8c | 861 | SYM = global.sym globvar.sym perlio.sym pp.sym |
419eaf7b | 862 | |
22c35a8c | 863 | SYMH = perlvars.h intrpvar.h thrdvar.h |
419eaf7b | 864 | |
dae78bb1 IZ |
865 | CHMOD_W = chmod +w |
866 | ||
a8581515 | 867 | # The following files are generated automatically |
9ad884cb | 868 | # autodoc.pl: pod/perlapi.pod pod/perlintern.pod |
c83f8f39 JH |
869 | # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c |
870 | # ext/B/B/Asmdata.pm | |
9ad884cb JH |
871 | # embed.pl: proto.h embed.h embedvar.h global.sym |
872 | # perlapi.h perlapi.c | |
873 | # [* embed.pl needs pp.sym generated by opcode.pl! *] | |
874 | # keywords.pl: keywords.h | |
875 | # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym | |
c83f8f39 JH |
876 | # regcomp.pl: regnodes.h |
877 | # warnings.pl: warnings.h lib/warnings.pm | |
e50aee73 AD |
878 | # The correct versions should be already supplied with the perl kit, |
879 | # in case you don't have perl available. | |
36bb303b | 880 | # To force them to be regenerated, run |
9ad884cb | 881 | # perl regen.pl |
36bb303b NC |
882 | # with your existing copy of perl |
883 | # (make regen_headers is kept for backwards compatibility) | |
e1354ed6 | 884 | |
b4d4469a JH |
885 | AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \ |
886 | embed.h embedvar.h global.sym \ | |
887 | pod/perlintern.pod pod/perlapi.pod \ | |
acfe0abc | 888 | perlapi.h perlapi.c ext/ByteLoader/byterun.h \ |
c83f8f39 JH |
889 | ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \ |
890 | warnings.h lib/warnings.pm | |
e1354ed6 | 891 | |
869a466c JH |
892 | .PHONY: regen_headers regen_pods regen_all |
893 | ||
9ad884cb JH |
894 | regen regen_headers: FORCE |
895 | -perl regen.pl | |
8e07c86e | 896 | |
4755096e | 897 | regen_pods: FORCE |
fcfe1ab7 | 898 | -cd pod; $(LDLIBPTH) $(MAKE) regen_pods |
4755096e | 899 | |
9ad884cb | 900 | regen_all: $(PERLYVMS) regen regen_pods |
9fec149b | 901 | |
1aea71db A |
902 | .PHONY: manisort manicheck |
903 | ||
904 | manisort: FORCE | |
f3a5d88c JH |
905 | LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \ |
906 | LC_ALL=C sort -fdo MANIFEST MANIFEST) | |
1aea71db A |
907 | |
908 | manicheck: FORCE | |
909 | perl Porting/manicheck | |
910 | ||
a0d0e21e | 911 | # Extensions: |
4318d5a0 GB |
912 | # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |
913 | # automatically get built. There should ordinarily be no need to change | |
914 | # any of this part of makefile. | |
a0d0e21e LW |
915 | # |
916 | # The dummy dependency is a place holder in case $(dynamic_ext) or | |
917 | # $(static_ext) is empty. | |
918 | # | |
919 | # DynaLoader may be needed for extensions that use Makefile.PL. | |
920 | ||
443a5b98 | 921 | $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE |
94c41b70 | 922 | @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e | 923 | |
443a5b98 | 924 | d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE |
92c28edd | 925 | @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e | 926 | |
443a5b98 | 927 | s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE |
94c41b70 | 928 | @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
2304df62 | 929 | |
443a5b98 | 930 | n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE |
92c28edd | 931 | @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
4318d5a0 | 932 | |
869a466c JH |
933 | .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \ |
934 | realclean _realcleaner clobber _clobber \ | |
935 | distclean veryclean _verycleaner | |
936 | ||
17b893d8 | 937 | clean: _tidy _mopup |
70af249b | 938 | |
2edbd6da | 939 | realclean: _realcleaner _mopup |
fcfe1ab7 | 940 | @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh" |
70af249b | 941 | |
b37ebb13 | 942 | _clobber: |
5440bc8e | 943 | -@rm -f Cross/run-* Cross/to-* Cross/from-* |
bf35c3f6 | 944 | rm -f config.sh cppstdin Policy.sh extras.lst |
b37ebb13 JH |
945 | |
946 | clobber: _realcleaner _mopup _clobber | |
70af249b CS |
947 | |
948 | distclean: clobber | |
949 | ||
2edbd6da | 950 | # Like distclean but also removes emacs backups and *.orig. |
b37ebb13 JH |
951 | veryclean: _verycleaner _mopup _clobber |
952 | -@rm -f Obsolete Wanted | |
2edbd6da | 953 | |
70af249b CS |
954 | # Do not 'make _mopup' directly. |
955 | _mopup: | |
cd4d8a96 | 956 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c |
1ed50e5b | 957 | -rmdir .depending |
72b3d9b4 | 958 | -@test -f extra.pods && rm -f `cat extra.pods` |
b4bc034f | 959 | -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod |
ac83e8b0 | 960 | -rm -f perl.exp ext.libs extra.pods opmini.o |
d96ebe2e | 961 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
1cfa4ec7 | 962 | -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap |
9d4d067b | 963 | -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log |
6a966751 | 964 | -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs |
93c0359c | 965 | -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok |
a0457be1 | 966 | -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump |
1ed50e5b JH |
967 | -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl |
968 | -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old | |
70af249b CS |
969 | |
970 | # Do not 'make _tidy' directly. | |
971 | _tidy: | |
e3f83878 JH |
972 | -cd pod; $(LDLIBPTH) $(MAKE) clean |
973 | -cd utils; $(LDLIBPTH) $(MAKE) clean | |
974 | -cd x2p; $(LDLIBPTH) $(MAKE) clean | |
4318d5a0 | 975 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
e3f83878 | 976 | $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ |
a0d0e21e | 977 | done |
6ee623d5 | 978 | rm -f testcompile compilelog |
ff68c719 | 979 | |
2edbd6da | 980 | _cleaner1: |
4633a7c4 | 981 | -cd os2; rm -f Makefile |
2edbd6da JH |
982 | -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN) |
983 | -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN) | |
984 | -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN) | |
4318d5a0 | 985 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
2edbd6da | 986 | $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \ |
a0d0e21e | 987 | done |
2edbd6da | 988 | |
2ad994b6 | 989 | # Some systems do not support "?", so keep these files separate. |
2edbd6da | 990 | _cleaner2: |
2ad994b6 PG |
991 | -rm -f core.*perl.*.? t/core.perl.*.? .?*.c |
992 | rm -f core *perl.core t/core t/*perl.core | |
993 | rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests | |
994 | rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) | |
a0d0e21e | 995 | rm -rf $(addedbyconf) |
0eb4e931 | 996 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old |
3d40713c | 997 | rm -f $(private) lib/Config.pod |
a0d0e21e | 998 | rm -rf lib/auto |
07a6e20d | 999 | rm -f lib/.exists lib/*/.exists lib/*/*/.exists |
16d20bd9 | 1000 | rm -f h2ph.man pstruct |
a0d0e21e | 1001 | rm -rf .config |
9b9c6f34 | 1002 | rm -f preload |
6ee623d5 | 1003 | rm -f testcompile compilelog |
26f17523 JH |
1004 | -rmdir lib/B lib/Data lib/Digest |
1005 | rm -rf lib/Encode | |
c61dfb31 JH |
1006 | -rmdir lib/Filter/Util lib/IO/Socket lib/IO |
1007 | -rmdir lib/List lib/MIME lib/Scalar lib/Sys | |
1008 | -rmdir lib/threads lib/XS | |
ecfc5424 | 1009 | |
f4db5405 | 1010 | _realcleaner: |
2edbd6da JH |
1011 | @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean |
1012 | @$(LDLIBPTH) $(MAKE) _cleaner2 | |
1013 | ||
f4db5405 | 1014 | _verycleaner: |
2edbd6da JH |
1015 | @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean |
1016 | @$(LDLIBPTH) $(MAKE) _cleaner2 | |
c94787a5 | 1017 | -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig |
2edbd6da | 1018 | |
2304df62 AD |
1019 | # The following lint has practically everything turned on. Unfortunately, |
1020 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. | |
1021 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message | |
1022 | # for that spot. | |
1023 | ||
869a466c | 1024 | .PHONY: lint |
bf0dfd28 | 1025 | lint: $(c) |
2304df62 AD |
1026 | lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz |
1027 | ||
fb73857a | 1028 | # Need to unset during recursion to go out of loop. |
1029 | # The README below ensures that the dependency list is never empty and | |
1030 | # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding. | |
cd4d8a96 | 1031 | |
84902520 | 1032 | MAKEDEPEND = Makefile makedepend |
cd4d8a96 | 1033 | |
fb73857a | 1034 | $(FIRSTMAKEFILE): README $(MAKEDEPEND) |
cd4d8a96 | 1035 | $(MAKE) depend MAKEDEPEND= |
a0d0e21e | 1036 | |
599a829f | 1037 | config.h: config_h.SH config.sh |
655635e8 | 1038 | $(SHELL) config_h.SH |
1039 | ||
a0d0e21e | 1040 | # When done, touch perlmain.c so that it doesn't get remade each time. |
869a466c | 1041 | .PHONY: depend |
2304df62 | 1042 | depend: makedepend |
fb73857a | 1043 | sh ./makedepend MAKE=$(MAKE) |
a0d0e21e | 1044 | - test -s perlmain.c && touch perlmain.c |
2304df62 AD |
1045 | cd x2p; $(MAKE) depend |
1046 | ||
cd4d8a96 | 1047 | # Cannot postpone this until $firstmakefile is ready ;-) |
92c28edd JH |
1048 | makedepend: makedepend.SH config.sh |
1049 | sh ./makedepend.SH | |
cd4d8a96 | 1050 | |
1167a30e | 1051 | .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \ |
869a466c | 1052 | test_tty test-tty _test_tty test_notty test-notty _test_notty \ |
e018f8be | 1053 | utest ucheck test.utf8 check.utf8 test.torture torturetest \ |
869a466c | 1054 | test.third check.third utest.third ucheck.third test_notty.third \ |
69bfbd2f | 1055 | test.deparse test_notty.deparse test_harness test_harness_notty \ |
1df34986 | 1056 | test.bytecompile minitest coretest |
869a466c | 1057 | |
ec861bc1 JH |
1058 | # Cannot delegate rebuilding of t/perl to make |
1059 | # to allow interlaced test and minitest | |
3e3baf6d | 1060 | |
1167a30e IZ |
1061 | TESTFILE=TEST |
1062 | ||
1063 | _test_prep: | |
ec861bc1 | 1064 | cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT)) |
3e3baf6d | 1065 | |
1167a30e IZ |
1066 | # Architecture-neutral stuff: |
1067 | ||
1068 | test_prep_pre: preplibrary utilities $(nonxs_ext) | |
1069 | ||
443a5b98 | 1070 | test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL) |
5fe84fd2 | 1071 | PERL=./perl $(MAKE) _test_prep |
ec861bc1 | 1072 | |
5fe84fd2 | 1073 | _test_tty: |
2a30c5e0 | 1074 | cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty |
ec861bc1 | 1075 | |
5fe84fd2 | 1076 | _test_notty: |
2a30c5e0 | 1077 | cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) |
ec861bc1 JH |
1078 | |
1079 | # The second branch is for testing without a tty or controlling terminal, | |
1080 | # see t/op/stat.t | |
1081 | _test: | |
994e9bc0 | 1082 | if (true </dev/tty) >/dev/null 2>&1; then \ |
1167a30e | 1083 | $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \ |
994e9bc0 | 1084 | else \ |
1167a30e | 1085 | $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \ |
994e9bc0 | 1086 | fi |
3d8f1d64 | 1087 | @echo "Ran tests" > t/rantests |
a0ed51b3 | 1088 | |
937aca76 | 1089 | test check: test_prep |
ec861bc1 JH |
1090 | PERL=./perl $(MAKE) _test |
1091 | ||
937aca76 | 1092 | test_tty: test_prep |
5fe84fd2 | 1093 | PERL=./perl $(MAKE) _test_tty |
ec861bc1 | 1094 | |
937aca76 | 1095 | test_notty: test_prep |
5fe84fd2 | 1096 | PERL=./perl $(MAKE) _test_notty |
ec861bc1 | 1097 | |
83f0ef60 | 1098 | utest ucheck test.utf8 check.utf8: test_prep |
35117553 | 1099 | PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test |
ec861bc1 | 1100 | |
5a6e071d PJ |
1101 | coretest: test_prep |
1102 | PERL=./perl TEST_ARGS=-core $(MAKE) _test | |
1103 | ||
48a293f8 | 1104 | test-prep: test_prep |
5fe84fd2 JH |
1105 | |
1106 | test-tty: test_tty | |
1107 | ||
1108 | test-notty: test_notty | |
1109 | ||
e018f8be JH |
1110 | # Torture testing |
1111 | ||
1112 | test.torture torturetest: test_prep | |
1113 | PERL=./perl TEST_ARGS=-torture $(MAKE) _test | |
1114 | ||
7a834142 JH |
1115 | # Targets for valgrind testing: |
1116 | ||
1117 | test_prep.valgrind: test_prep perl.valgrind | |
1118 | PERL=./perl $(MAKE) _test_prep | |
1119 | ||
1120 | test.valgrind check.valgrind: test_prep perl.valgrind.config | |
1121 | PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test | |
1122 | ||
1123 | utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind | |
1124 | PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test | |
1125 | ||
1126 | test_notty.valgrind: test_prep.valgrind perl.valgrind | |
1127 | PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty | |
1128 | ||
ec861bc1 JH |
1129 | # Targets for Third Degree testing. |
1130 | ||
9b99345a | 1131 | test_prep.third: test_prep perl.third |
5fe84fd2 | 1132 | PERL=./perl.third $(MAKE) _test_prep |
ec861bc1 | 1133 | |
937aca76 | 1134 | test.third check.third: test_prep.third perl.third |
ec861bc1 JH |
1135 | PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test |
1136 | ||
937aca76 | 1137 | utest.third ucheck.third: test_prep.third perl.third |
35117553 | 1138 | PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test |
ec861bc1 | 1139 | |
937aca76 | 1140 | test_notty.third: test_prep.third perl.third |
5fe84fd2 | 1141 | PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty |
2304df62 | 1142 | |
1df34986 AE |
1143 | # Targets for Bytecode/ByteLoader testing. |
1144 | ||
1145 | test.bytecompile: test_prep | |
1146 | PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test | |
1147 | ||
35117553 JH |
1148 | # Targets for Deparse testing. |
1149 | ||
1150 | test.deparse: test_prep | |
1151 | PERL=./perl TEST_ARGS=-deparse $(MAKE) _test | |
1152 | ||
1153 | test_notty.deparse: test_prep | |
1154 | PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty | |
1155 | ||
d96ebe2e | 1156 | # Can't depend on lib/Config.pm because that might be where miniperl |
1157 | # is crashing. | |
443a5b98 | 1158 | minitest: miniperl$(EXE_EXT) lib/re.pm |
4fa3f26e YST |
1159 | -@test -f lib/lib.pm && test -f lib/Config.pm || \ |
1160 | $(MAKE) lib/Config.pm lib/lib.pm | |
1161 | @echo " " | |
d96ebe2e | 1162 | @echo "You may see some irrelevant test failures if you have been unable" |
4fa3f26e YST |
1163 | @echo "to build lib/Config.pm or lib/lib.pm." |
1164 | @echo " " | |
cd4d8a96 | 1165 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ |
4fa3f26e | 1166 | && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty |
16d20bd9 | 1167 | |
1167a30e IZ |
1168 | # Test via harness |
1169 | ||
1170 | test_harness: test_prep | |
1171 | PERL=./perl $(MAKE) TESTFILE=harness _test | |
1172 | ||
69bfbd2f RGS |
1173 | test_harness_notty: test_prep |
1174 | PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test | |
1175 | ||
fb73857a | 1176 | # Handy way to run perlbug -ok without having to install and run the |
84902520 | 1177 | # installed perlbug. We don't re-run the tests here - we trust the user. |
fb73857a | 1178 | # Please *don't* use this unless all tests pass. |
1d2dff63 | 1179 | # If you want to report test failures, use "make nok" instead. |
869a466c JH |
1180 | |
1181 | .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack | |
1182 | ||
188cd53f | 1183 | ok: utilities |
92c28edd | 1184 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' |
84902520 | 1185 | |
105f9295 | 1186 | okfile: utilities |
92c28edd | 1187 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok |
105f9295 | 1188 | |
890b8eb0 NC |
1189 | oknack: utilities |
1190 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A | |
1191 | ||
1192 | okfilenack: utilities | |
1193 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A | |
1194 | ||
1d2dff63 | 1195 | nok: utilities |
92c28edd | 1196 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' |
1d2dff63 | 1197 | |
b4e8cfaf GS |
1198 | nokfile: utilities |
1199 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok | |
1200 | ||
890b8eb0 NC |
1201 | noknack: utilities |
1202 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A | |
1203 | ||
1204 | nokfilenack: utilities | |
1205 | $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A | |
1206 | ||
869a466c JH |
1207 | .PHONY: clist hlist shlist pllist |
1208 | ||
85e6fe83 | 1209 | clist: $(c) |
92c28edd | 1210 | echo $(c) | tr ' ' $(TRNL) >.clist |
2304df62 | 1211 | |
85e6fe83 | 1212 | hlist: $(h) |
92c28edd | 1213 | echo $(h) | tr ' ' $(TRNL) >.hlist |
2304df62 | 1214 | |
85e6fe83 | 1215 | shlist: $(sh) |
92c28edd | 1216 | echo $(sh) | tr ' ' $(TRNL) >.shlist |
2304df62 | 1217 | |
4633a7c4 | 1218 | pllist: $(pl) |
92c28edd | 1219 | echo $(pl) | tr ' ' $(TRNL) >.pllist |
4633a7c4 | 1220 | |
92c28edd JH |
1221 | Makefile: Makefile.SH ./config.sh |
1222 | $(SHELL) Makefile.SH | |
760ac839 | 1223 | |
869a466c | 1224 | .PHONY: distcheck |
599a829f | 1225 | distcheck: FORCE |
760ac839 LW |
1226 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
1227 | ||
869a466c | 1228 | .PHONY: elc |
771c4874 IZ |
1229 | elc: emacs/cperl-mode.elc |
1230 | ||
1231 | emacs/cperl-mode.elc: emacs/cperl-mode.el | |
1232 | -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el | |
1233 | ||
869a466c JH |
1234 | .PHONY: etags ctags tags |
1235 | ||
d6a255e6 IZ |
1236 | etags: TAGS |
1237 | ||
1238 | TAGS: emacs/cperl-mode.elc | |
3ee700d1 | 1239 | sh emacs/ptags |
01e22528 | 1240 | |
d6a255e6 IZ |
1241 | ctags: tags |
1242 | ||
1243 | # Let's hope make will not go into an infinite loop on case-unsensitive systems | |
1244 | # This may also fail if . is in the head of the path, since perl will | |
1245 | # require -Ilib | |
1246 | tags: TAGS | |
1247 | perl emacs/e2ctags.pl TAGS > tags | |
3ee700d1 | 1248 | |
2304df62 AD |
1249 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
1250 | # If this runs make out of memory, delete /usr/include lines. | |
1251 | !NO!SUBS! | |
1252 | ||
85e6fe83 | 1253 | $eunicefix Makefile |
2304df62 AD |
1254 | case `pwd` in |
1255 | *SH) | |
85e6fe83 | 1256 | $rm -f ../Makefile |
cd4d8a96 | 1257 | $ln Makefile ../Makefile |
2304df62 AD |
1258 | ;; |
1259 | esac | |
cd4d8a96 | 1260 | $rm -f $firstmakefile |
5ff3f7a4 GS |
1261 | |
1262 | # Now do any special processing required before building. | |
1263 | ||
1264 | case "$ebcdic" in | |
2d340b60 | 1265 | define) |
5ff3f7a4 | 1266 | xxx='' |
2d340b60 | 1267 | echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2 |
7a66b286 | 1268 | case "$osname" in |
25e9a2e3 | 1269 | os390|posix-bc) |
5ff3f7a4 | 1270 | rm -f y.tab.c y.tab.h |
e9d08790 | 1271 | # yacc must be a reentrant ("pure") Bison in BS2000 Posix! |
5ff3f7a4 GS |
1272 | yacc -d perly.y >/dev/null 2>&1 |
1273 | if cmp -s y.tab.c perly.c; then | |
1274 | rm -f y.tab.c | |
1275 | else | |
1276 | echo "perly.y -> perly.c" >&2 | |
1277 | mv -f y.tab.c perly.c | |
1278 | chmod u+w perly.c | |
c8dba6f3 GS |
1279 | sed -e '/^#include "perl\.h"/a\ |
1280 | \ | |
1281 | #define yydebug PL_yydebug\ | |
1282 | #define yynerrs PL_yynerrs\ | |
1283 | #define yyerrflag PL_yyerrflag\ | |
1284 | #define yychar PL_yychar\ | |
c8dba6f3 GS |
1285 | #define yyval PL_yyval\ |
1286 | #define yylval PL_yylval' \ | |
1287 | -e '/YYSTYPE *yyval;/D' \ | |
1288 | -e '/YYSTYPE *yylval;/D' \ | |
1289 | -e '/int yychar,/,/yynerrs;/D' \ | |
1290 | -e 's/int yydebug = 0;/yydebug = 0;/' \ | |
1291 | -e 's/[^_]realloc(/PerlMem_realloc(/g' \ | |
1292 | -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ | |
5ff3f7a4 GS |
1293 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
1294 | xxx="$xxx perly.c" | |
1295 | fi | |
6cfe8af5 JH |
1296 | case "$osname:$usethreads" in |
1297 | os390:define) | |
1298 | sed -e 's@^extern int yychar, yyerrflag;@/* extern int yychar, yyerrflag; */@' perly.c > perly.tmp && mv perly.tmp perly.c | |
1299 | ;; | |
1300 | esac | |
5ff3f7a4 GS |
1301 | if cmp -s y.tab.h perly.h; then |
1302 | rm -f y.tab.h | |
1303 | else | |
1304 | echo "perly.y -> perly.h" >&2 | |
1305 | mv -f y.tab.h perly.h | |
1306 | xxx="$xxx perly.h" | |
1307 | fi | |
e9d08790 | 1308 | if cd x2p |
5ff3f7a4 | 1309 | then |
e9d08790 | 1310 | rm -f y.tab.c y.tab.h |
5928ee40 JH |
1311 | case "$osname" in |
1312 | posix-bc) | |
1313 | # we are using two different yaccs in BS2000 Posix! | |
1314 | byacc a2p.y >/dev/null 2>&1 | |
1315 | ;; | |
1316 | *) # e.g. os390 | |
1317 | yacc a2p.y >/dev/null 2>&1 | |
1318 | ;; | |
1319 | esac | |
e9d08790 JH |
1320 | if cmp -s y.tab.c a2p.c |
1321 | then | |
1322 | rm -f y.tab.c | |
1323 | else | |
1324 | echo "a2p.y -> a2p.c" >&2 | |
1325 | mv -f y.tab.c a2p.c | |
1326 | chmod u+w a2p.c | |
1327 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ | |
f1f802f7 | 1328 | -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \ |
e9d08790 JH |
1329 | -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c |
1330 | xxx="$xxx a2p.c" | |
1331 | fi | |
1332 | # In case somebody yacc -d:ed the a2p.y. | |
1333 | if test -f y.tab.h | |
1334 | then | |
1335 | if cmp -s y.tab.h a2p.h | |
1336 | then | |
1337 | rm -f y.tab.h | |
1338 | else | |
1339 | echo "a2p.h -> a2p.h" >&2 | |
1340 | mv -f y.tab.h a2p.h | |
1341 | xxx="$xxx a2p.h" | |
1342 | fi | |
1343 | fi | |
1344 | cd .. | |
5ff3f7a4 | 1345 | fi |
7a66b286 JH |
1346 | ;; |
1347 | vmesa) | |
1348 | # Do nothing in VM/ESA. | |
1349 | ;; | |
aa34f189 | 1350 | *) |
e9d08790 | 1351 | echo "'$osname' is an EBCDIC system I don't know that well." >&4 |
aa34f189 | 1352 | ;; |
fe572743 | 1353 | esac |
5ff3f7a4 GS |
1354 | case "$xxx" in |
1355 | '') echo "No parser files were regenerated. That's okay." >&2 ;; | |
1356 | esac | |
1357 | ;; | |
1358 | esac | |
1359 |