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