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