Commit | Line | Data |
---|---|---|
599a829f | 1 | #! /bin/sh |
2304df62 AD |
2 | case $CONFIG in |
3 | '') | |
4 | if test -f config.sh; then TOP=.; | |
5 | elif test -f ../config.sh; then TOP=..; | |
6 | elif test -f ../../config.sh; then TOP=../..; | |
7 | elif test -f ../../../config.sh; then TOP=../../..; | |
8 | elif test -f ../../../../config.sh; then TOP=../../../..; | |
9 | else | |
10 | echo "Can't find config.sh."; exit 1 | |
11 | fi | |
12 | . $TOP/config.sh | |
13 | ;; | |
14 | esac | |
15 | : This forces SH files to create target in same directory as SH file. | |
16 | : This is so that make depend always knows where to find SH derivatives. | |
17 | case "$0" in | |
18 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; | |
19 | esac | |
20 | ||
2304df62 AD |
21 | case "$d_dosuid" in |
22 | *define*) suidperl='suidperl' ;; | |
23 | *) suidperl='';; | |
24 | esac | |
25 | ||
d5d19f97 | 26 | linklibperl='$(LIBPERL)' |
3c321fdc | 27 | shrpldflags='$(LDDLFLAGS)' |
6ee623d5 | 28 | ldlibpth='' |
d96ebe2e | 29 | case "$useshrplib" in |
30 | true) | |
6ee623d5 GS |
31 | # Prefix all runs of 'miniperl' and 'perl' with |
32 | # $ldlibpth so that ./perl finds *this* libperl.so. | |
33 | ldlibpth="LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH" | |
34 | ||
d5d19f97 | 35 | pldlflags="$cccdlflags" |
f0efd8cf | 36 | # NeXT-4 specific stuff. Can't we do this in the hint file? |
d96ebe2e | 37 | case "${osname}${osvers}" in |
38 | next4*) | |
3c321fdc | 39 | ld=libtool |
40 | lddlflags="-dynamic -undefined warning -framework System \ | |
41 | -compatibility_version 1 -current_version $patchlevel \ | |
42 | -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@" | |
6ee623d5 GS |
43 | # NeXT uses a different name. |
44 | ldlibpth="DYLD_LIBRARY_PATH=`pwd`:$DYLD_LIBRARY_PATH" | |
45 | ;; | |
46 | os2*) # OS/2 doesn't need anything special for LD_LIBRARY_PATH. | |
47 | ldlibpth='' | |
d96ebe2e | 48 | ;; |
dec5cd44 | 49 | sunos*|freebsd[23]*|netbsd*) |
d5d19f97 UP |
50 | linklibperl="-lperl" |
51 | ;; | |
3c321fdc | 52 | aix*) |
53 | shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp" | |
1553ab04 TB |
54 | case "$osvers" in |
55 | 3*) | |
56 | shrpldflags="$shrpldflags -e _nostart $ldflags $libs $cryptlib" | |
57 | ;; | |
58 | *) | |
59 | shrpldflags="$shrpldflags -b noentry $ldflags $libs $cryptlib" | |
60 | ;; | |
61 | esac | |
3c321fdc | 62 | aixinstdir=`pwd | sed 's/\/UU$//'` |
63 | linklibperl="-L $archlibexp/CORE -L $aixinstdir -lperl" | |
64 | ;; | |
fb73857a | 65 | hpux10*) |
66 | linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+b$archlibexp/CORE -lperl" | |
67 | ;; | |
655635e8 | 68 | esac |
d5d19f97 | 69 | ;; |
f0efd8cf | 70 | *) pldlflags='' |
d96ebe2e | 71 | ;; |
ecfc5424 AD |
72 | esac |
73 | ||
a0d0e21e LW |
74 | : Prepare dependency lists for Makefile. |
75 | dynamic_list=' ' | |
76 | for f in $dynamic_ext; do | |
77 | : the dependency named here will never exist | |
ecfc5424 | 78 | base=`echo "$f" | sed 's/.*\///'` |
75f92628 | 79 | dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext" |
a0d0e21e LW |
80 | done |
81 | ||
82 | static_list=' ' | |
a0d0e21e LW |
83 | for f in $static_ext; do |
84 | base=`echo "$f" | sed 's/.*\///'` | |
cd4d8a96 | 85 | static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)" |
a0d0e21e LW |
86 | done |
87 | ||
4318d5a0 GB |
88 | nonxs_list=' ' |
89 | for f in $nonxs_ext; do | |
90 | base=`echo "$f" | sed 's/.*\///'` | |
91 | nonxs_list="$nonxs_list ext/$f/pm_to_blib" | |
92 | done | |
93 | ||
2304df62 | 94 | echo "Extracting Makefile (with variable substitutions)" |
655635e8 | 95 | $spitshell >Makefile <<!GROK!THIS! |
a0d0e21e | 96 | # Makefile.SH |
85e6fe83 LW |
97 | # This file is derived from Makefile.SH. Any changes made here will |
98 | # be lost the next time you run Configure. | |
655635e8 | 99 | # Makefile is used to generate $firstmakefile. The only difference |
100 | # is that $firstmakefile has the dependencies filled in at the end. | |
2304df62 | 101 | # |
fed7345c | 102 | # |
2304df62 AD |
103 | # I now supply perly.c with the kits, so don't remake perly.c without byacc |
104 | BYACC = $byacc | |
105 | CC = $cc | |
232e078e | 106 | LD = $ld |
16d20bd9 | 107 | |
2304df62 AD |
108 | LDFLAGS = $ldflags |
109 | CLDFLAGS = $ldflags | |
85e6fe83 | 110 | |
2304df62 AD |
111 | SMALL = $small |
112 | LARGE = $large $split | |
113 | mallocsrc = $mallocsrc | |
114 | mallocobj = $mallocobj | |
85e6fe83 | 115 | LNS = $lns |
2304df62 | 116 | RMS = rm -f |
85e6fe83 LW |
117 | ranlib = $ranlib |
118 | ||
16d20bd9 AD |
119 | # The following are mentioned only to make metaconfig include the |
120 | # appropriate questions in Configure. If you want to change these, | |
8e07c86e | 121 | # edit config.sh instead, or specify --man1dir=/wherever on |
16d20bd9 AD |
122 | # installman commandline. |
123 | bin = $installbin | |
124 | scriptdir = $scriptdir | |
d96ebe2e | 125 | shrpdir = $archlibexp/CORE |
16d20bd9 AD |
126 | privlib = $installprivlib |
127 | man1dir = $man1dir | |
128 | man1ext = $man1ext | |
129 | man3dir = $man3dir | |
130 | man3ext = $man3ext | |
131 | ||
85e6fe83 LW |
132 | # The following are used to build and install shared libraries for |
133 | # dynamic loading. | |
134 | LDDLFLAGS = $lddlflags | |
3c321fdc | 135 | SHRPLDFLAGS = $shrpldflags |
85e6fe83 | 136 | CCDLFLAGS = $ccdlflags |
a0d0e21e | 137 | DLSUFFIX = .$dlext |
ecfc5424 | 138 | PLDLFLAGS = $pldlflags |
d96ebe2e | 139 | LIBPERL = $libperl |
d5d19f97 | 140 | LLIBPERL= $linklibperl |
ecfc5424 | 141 | SHRPENV = $shrpenv |
a0d0e21e | 142 | |
6ee623d5 GS |
143 | # The following is used to include the current directory in |
144 | # LD_LIBRARY_PATH if you are building a shared libperl.so. | |
145 | LDLIBPTH = $ldlibpth | |
146 | ||
a0d0e21e LW |
147 | dynamic_ext = $dynamic_list |
148 | static_ext = $static_list | |
4318d5a0 GB |
149 | nonxs_ext = $nonxs_list |
150 | ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext) | |
cd4d8a96 | 151 | DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) |
2304df62 AD |
152 | |
153 | libs = $libs $cryptlib | |
154 | ||
909b3858 | 155 | public = perl $suidperl utilities translators |
2304df62 AD |
156 | |
157 | shellflags = $shellflags | |
158 | ||
d96ebe2e | 159 | # This is set to MAKE=$make if your $make command doesn't |
160 | # do it for you. | |
161 | $make_set_make | |
4633a7c4 | 162 | |
dfe9444c | 163 | # These variables may need to be manually set for non-Unix systems. |
4633a7c4 | 164 | AR = $ar |
dfe9444c AD |
165 | EXE_EXT = $_exe |
166 | LIB_EXT = $_a | |
167 | OBJ_EXT = $_o | |
168 | PATH_SEP = $p_ | |
4633a7c4 LW |
169 | |
170 | FIRSTMAKEFILE = $firstmakefile | |
171 | ||
172 | # Any special object files needed by this architecture, e.g. os2/os2.obj | |
173 | ARCHOBJS = $archobjs | |
174 | ||
cd4d8a96 | 175 | .SUFFIXES: .c \$(OBJ_EXT) |
176 | ||
d96ebe2e | 177 | # grrr |
178 | SHELL = $sh | |
655635e8 | 179 | |
28e8609d JH |
180 | # how to tr(anslate) newlines |
181 | TRNL = '$trnl' | |
182 | ||
2304df62 AD |
183 | !GROK!THIS! |
184 | ||
85e6fe83 | 185 | ## In the following dollars and backticks do not need the extra backslash. |
2304df62 AD |
186 | $spitshell >>Makefile <<'!NO!SUBS!' |
187 | ||
d96ebe2e | 188 | CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@` |
2304df62 | 189 | |
fed7345c | 190 | private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm |
2304df62 | 191 | |
4633a7c4 LW |
192 | # Files to be built with variable substitution before miniperl |
193 | # is available. | |
194 | sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \ | |
195 | makedir.SH perl_exp.SH writemain.SH | |
196 | ||
197 | shextract = Makefile cflags config.h makeaperl makedepend \ | |
655635e8 | 198 | makedir perl.exp writemain |
4633a7c4 LW |
199 | |
200 | # Files to be built with variable substitution after miniperl is | |
201 | # available. Dependencies handled manually below (for now). | |
2304df62 | 202 | |
909b3858 | 203 | pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL |
4633a7c4 | 204 | |
909b3858 | 205 | plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text |
4633a7c4 LW |
206 | |
207 | addedbyconf = UU $(shextract) $(plextract) pstruct | |
2304df62 | 208 | |
fed7345c | 209 | h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h |
a0d0e21e | 210 | h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h |
2304df62 | 211 | h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h |
219f41b1 | 212 | h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h |
599cee73 | 213 | h5 = bytecode.h byterun.h utf8.h warning.h |
33b839e2 | 214 | h = $(h1) $(h2) $(h3) $(h4) $(h5) |
2304df62 | 215 | |
33b839e2 | 216 | c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c byterun.c |
a0ed51b3 | 217 | c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c |
760ac839 | 218 | c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c |
2304df62 | 219 | |
a0d0e21e | 220 | c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c |
2304df62 | 221 | |
33b839e2 | 222 | obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) byterun$(OBJ_EXT) |
cd4d8a96 | 223 | 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) |
a0ed51b3 | 224 | obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) |
655635e8 | 225 | |
4633a7c4 | 226 | obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
2304df62 | 227 | |
a0d0e21e LW |
228 | # Once perl has been Configure'd and built ok you build different |
229 | # perl variants (Debugging, Embedded, Multiplicity etc) by saying: | |
d96ebe2e | 230 | # make clean; make LIBPERL=libperl<type>.a |
a0d0e21e LW |
231 | # where <type> is some combination of 'd' and(or) 'e' or 'm'. |
232 | # See cflags to understand how this works. | |
233 | # | |
d96ebe2e | 234 | # This mechanism is getting clunky and might not even work any more. |
235 | # EMBEDDING is on by default, and MULTIPLICITY doesn't work. | |
236 | # | |
a0d0e21e | 237 | |
2304df62 AD |
238 | lintflags = -hbvxac |
239 | ||
cd4d8a96 | 240 | .c$(OBJ_EXT): |
d96ebe2e | 241 | $(CCCMD) $(PLDLFLAGS) $*.c |
2304df62 | 242 | |
4318d5a0 | 243 | all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext) $(nonxs_ext) |
248e23d9 GS |
244 | @echo " "; |
245 | @echo " Everything is up to date. 'make test' to run test suite." | |
909b3858 | 246 | |
6ee623d5 GS |
247 | compile: all |
248 | echo "testing compilation" > testcompile; | |
249 | cd utils; $(MAKE) compile; | |
250 | cd x2p; $(MAKE) compile; | |
251 | cd pod; $(MAKE) compile; | |
252 | ||
909b3858 | 253 | translators: miniperl lib/Config.pm FORCE |
6ee623d5 | 254 | @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all |
8e07c86e | 255 | |
909b3858 | 256 | utilities: miniperl lib/Config.pm FORCE |
6ee623d5 | 257 | @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all |
909b3858 | 258 | |
259 | ||
16d20bd9 AD |
260 | # This is now done by installman only if you actually want the man pages. |
261 | # @echo " "; echo " Making docs"; cd pod; $(MAKE) all; | |
85e6fe83 LW |
262 | |
263 | # Phony target to force checking subdirectories. | |
e50aee73 | 264 | # Apparently some makes require an action for the FORCE target. |
85e6fe83 | 265 | FORCE: |
4633a7c4 | 266 | @sh -c true |
85e6fe83 | 267 | |
cd4d8a96 | 268 | miniperlmain$(OBJ_EXT): miniperlmain.c |
d96ebe2e | 269 | $(CCCMD) $(PLDLFLAGS) $*.c |
ecfc5424 | 270 | |
655635e8 | 271 | perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE) |
a0d0e21e LW |
272 | sh writemain $(DYNALOADER) $(static_ext) > tmp |
273 | sh mv-if-diff tmp perlmain.c | |
85e6fe83 | 274 | |
cd4d8a96 | 275 | perlmain$(OBJ_EXT): perlmain.c |
d96ebe2e | 276 | $(CCCMD) $(PLDLFLAGS) $*.c |
85e6fe83 | 277 | |
a0d0e21e LW |
278 | # The file ext.libs is a list of libraries that must be linked in |
279 | # for static extensions, e.g. -lm -lgdbm, etc. The individual | |
280 | # static extension Makefile's add to it. | |
fed7345c | 281 | ext.libs: $(static_ext) |
a0d0e21e | 282 | -@test -f ext.libs || touch ext.libs |
85e6fe83 | 283 | |
ecfc5424 | 284 | !NO!SUBS! |
599a829f | 285 | |
d96ebe2e | 286 | # How to build libperl. This is still rather convoluted. |
599a829f | 287 | # Load up custom Makefile.SH fragment for shared loading and executables: |
d96ebe2e | 288 | if test -r $osname/Makefile.SHs ; then |
289 | . $osname/Makefile.SHs | |
290 | $spitshell >>Makefile <<!GROK!THIS! | |
cd4d8a96 | 291 | |
292 | Makefile: $osname/Makefile.SHs | |
cd4d8a96 | 293 | !GROK!THIS! |
294 | else | |
f0efd8cf | 295 | $spitshell >>Makefile <<'!NO!SUBS!' |
9c9e9f08 | 296 | $(LIBPERL): $& perl$(OBJ_EXT) $(obj) |
297 | !NO!SUBS! | |
d96ebe2e | 298 | case "$useshrplib" in |
299 | true) | |
300 | $spitshell >>Makefile <<'!NO!SUBS!' | |
3c321fdc | 301 | $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj) |
302 | !NO!SUBS! | |
303 | case "$osname" in | |
304 | aix) | |
305 | $spitshell >>Makefile <<'!NO!SUBS!' | |
28e8609d | 306 | rm -f libperl$(OBJ_EXT) |
3c321fdc | 307 | mv $@ libperl$(OBJ_EXT) |
308 | $(AR) qv $(LIBPERL) libperl$(OBJ_EXT) | |
ecfc5424 | 309 | !NO!SUBS! |
3c321fdc | 310 | ;; |
311 | esac | |
d96ebe2e | 312 | ;; |
313 | *) | |
314 | $spitshell >>Makefile <<'!NO!SUBS!' | |
315 | rm -f $(LIBPERL) | |
316 | $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj) | |
317 | @$(ranlib) $(LIBPERL) | |
655635e8 | 318 | !NO!SUBS! |
d96ebe2e | 319 | ;; |
320 | esac | |
599a829f IZ |
321 | $spitshell >>Makefile <<'!NO!SUBS!' |
322 | ||
323 | # How to build executables. | |
324 | ||
325 | # The $& notation tells Sequent machines that it can do a parallel make, | |
326 | # and is harmless otherwise. | |
327 | # The miniperl -w -MExporter line is a basic cheap test to catch errors | |
328 | # before make goes on to run preplibrary and then MakeMaker on extensions. | |
329 | # This is very handy because later errors are often caused by miniperl | |
330 | # build problems but that's not obvious to the novice. | |
331 | # The Module used here must not depend on Config or any extensions. | |
332 | ||
333 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) | |
6ee623d5 | 334 | $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs) |
bfc6b1eb | 335 | $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest |
599a829f IZ |
336 | |
337 | perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs | |
6ee623d5 | 338 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f IZ |
339 | |
340 | pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs | |
6ee623d5 | 341 | $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f | 342 | |
dbadb36a | 343 | purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs |
6ee623d5 | 344 | $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
dbadb36a | 345 | |
599a829f | 346 | quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs |
6ee623d5 | 347 | $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 AD |
348 | |
349 | # This version, if specified in Configure, does ONLY those scripts which need | |
350 | # set-id emulation. Suidperl must be setuid root. It contains the "taint" | |
351 | # checks as well as the special code to validate that the script in question | |
352 | # has been invoked correctly. | |
353 | ||
d96ebe2e | 354 | suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs |
6ee623d5 | 355 | $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 | 356 | |
599a829f IZ |
357 | !NO!SUBS! |
358 | ||
359 | fi | |
360 | ||
361 | $spitshell >>Makefile <<'!NO!SUBS!' | |
362 | ||
cd4d8a96 | 363 | sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h) |
2304df62 | 364 | $(RMS) sperl.c |
85e6fe83 | 365 | $(LNS) perl.c sperl.c |
d96ebe2e | 366 | $(CCCMD) -DIAMSUID sperl.c |
2304df62 AD |
367 | $(RMS) sperl.c |
368 | ||
fec02dd3 AD |
369 | # We have to call our ./makedir because Ultrix 4.3 make can't handle the line |
370 | # test -d lib/auto || mkdir lib/auto | |
371 | # | |
4633a7c4 | 372 | preplibrary: miniperl lib/Config.pm $(plextract) |
cd4d8a96 | 373 | @sh ./makedir lib/auto |
a0d0e21e | 374 | @echo " AutoSplitting perl library" |
bfc6b1eb | 375 | $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ |
a0d0e21e | 376 | autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm |
2304df62 | 377 | |
75f92628 | 378 | # Take care to avoid modifying lib/Config.pm without reason |
fb73857a | 379 | # (If trying to create a new port and having problems with the configpm script, |
380 | # try 'make minitest' and/or commenting out the tests at the end of configpm.) | |
655635e8 | 381 | lib/Config.pm: config.sh miniperl configpm |
6ee623d5 | 382 | $(LDLIBPTH) ./miniperl configpm tmp |
a3f9223b | 383 | sh mv-if-diff tmp $@ |
2304df62 | 384 | |
37120919 | 385 | lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm |
a3f9223b GS |
386 | $(LDLIBPTH) ./miniperl minimod.pl > tmp |
387 | sh mv-if-diff tmp $@ | |
fed7345c | 388 | |
56953603 | 389 | lib/re.pm: ext/re/re.pm |
ceb0239c | 390 | rm -f $@ |
56953603 IZ |
391 | cat ext/re/re.pm > $@ |
392 | ||
393 | $(plextract): miniperl lib/Config.pm lib/re.pm | |
474d7bc5 | 394 | $(LDLIBPTH) ./miniperl -Ilib $@.PL |
6ee623d5 | 395 | |
16d20bd9 AD |
396 | install: all install.perl install.man |
397 | ||
cd4d8a96 | 398 | install.perl: all installperl |
6ee623d5 GS |
399 | if [ -n "$(COMPILE)" ]; \ |
400 | then \ | |
401 | cd utils; $(MAKE) compile; \ | |
402 | cd ../x2p; $(MAKE) compile; \ | |
403 | cd ../pod; $(MAKE) compile; \ | |
83673e1f | 404 | else :; \ |
6ee623d5 GS |
405 | fi |
406 | $(LDLIBPTH) ./perl installperl | |
a0d0e21e | 407 | |
cd4d8a96 | 408 | install.man: all installman |
6ee623d5 | 409 | $(LDLIBPTH) ./perl installman |
16d20bd9 | 410 | |
84902520 TB |
411 | # XXX Experimental. Hardwired values, but useful for testing. |
412 | # Eventually Configure could ask for some of these values. | |
413 | install.html: all installhtml | |
6ee623d5 | 414 | $(LDLIBPTH) ./perl installhtml \ |
84902520 TB |
415 | --podroot=. --podpath=. --recurse \ |
416 | --htmldir=$(privlib)/html \ | |
417 | --htmlroot=$(privlib)/html \ | |
418 | --splithead=pod/perlipc \ | |
419 | --splititem=pod/perlfunc \ | |
420 | --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \ | |
421 | --verbose | |
422 | ||
16d20bd9 | 423 | |
a0d0e21e | 424 | # I now supply perly.c with the kits, so the following section is |
56febc5e AD |
425 | # used only if you force byacc to run by saying |
426 | # make run_byacc | |
427 | # Since we patch up the byacc output, the perly.fixer script needs | |
428 | # to run with precisely the same version of byacc as I use. You | |
429 | # normally shouldn't remake perly.[ch]. | |
430 | ||
232e078e | 431 | run_byacc: FORCE |
28757baa | 432 | @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict |
56febc5e | 433 | $(BYACC) -d perly.y |
fb73857a | 434 | chmod 664 perly.c |
56febc5e | 435 | sh $(shellflags) ./perly.fixer y.tab.c perly.c |
55497cff | 436 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
437 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c | |
ebb99254 | 438 | sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h |
55497cff | 439 | cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h |
fb73857a | 440 | chmod 664 vms/perly_c.vms vms/perly_h.vms |
441 | perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms | |
56febc5e AD |
442 | |
443 | # We don't want to regenerate perly.c and perly.h, but they might | |
444 | # appear out-of-date after a patch is applied or a new distribution is | |
445 | # made. | |
446 | perly.c: perly.y | |
cd4d8a96 | 447 | -@sh -c true |
56febc5e AD |
448 | |
449 | perly.h: perly.y | |
cd4d8a96 | 450 | -@sh -c true |
a0d0e21e | 451 | |
bd656b61 | 452 | # No compat3.sym here since and including the 5.004_50. |
e4d5a464 | 453 | # No interp.sym since 5.005_03. |
017f25f1 | 454 | SYM = global.sym perlio.sym thread.sym |
419eaf7b JH |
455 | |
456 | SYMH = perlvars.h thrdvar.h | |
457 | ||
a8581515 | 458 | # The following files are generated automatically |
e50aee73 AD |
459 | # keywords.h: keywords.pl |
460 | # opcode.h: opcode.pl | |
461 | # embed.h: embed.pl global.sym interp.sym | |
a8581515 MB |
462 | # byterun.h: bytecode.pl |
463 | # byterun.c: bytecode.pl | |
464 | # lib/B/Asmdata.pm: bytecode.pl | |
d09b2d29 | 465 | # regnodes.h: regcomp.pl |
599cee73 | 466 | # warning.h lib/warning.pm: warning.pl |
e50aee73 AD |
467 | # The correct versions should be already supplied with the perl kit, |
468 | # in case you don't have perl available. | |
469 | # To force them to run, type | |
470 | # make regen_headers | |
471 | regen_headers: FORCE | |
472 | perl keywords.pl | |
473 | perl opcode.pl | |
474 | perl embed.pl | |
a8581515 | 475 | perl bytecode.pl |
d09b2d29 | 476 | perl regcomp.pl |
599cee73 | 477 | perl warning.pl |
8e07c86e | 478 | |
a0d0e21e | 479 | # Extensions: |
4318d5a0 GB |
480 | # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |
481 | # automatically get built. There should ordinarily be no need to change | |
482 | # any of this part of makefile. | |
a0d0e21e LW |
483 | # |
484 | # The dummy dependency is a place holder in case $(dynamic_ext) or | |
485 | # $(static_ext) is empty. | |
486 | # | |
487 | # DynaLoader may be needed for extensions that use Makefile.PL. | |
488 | ||
489 | $(DYNALOADER): miniperl preplibrary FORCE | |
6ee623d5 | 490 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e LW |
491 | |
492 | d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE | |
6ee623d5 | 493 | @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
a0d0e21e LW |
494 | |
495 | s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE | |
6ee623d5 | 496 | @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) |
2304df62 | 497 | |
4318d5a0 GB |
498 | n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE |
499 | @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) | |
500 | ||
17b893d8 | 501 | clean: _tidy _mopup |
70af249b CS |
502 | |
503 | realclean: _cleaner _mopup | |
4e2a5f63 | 504 | @echo "Note that make realclean does not delete config.sh or Policy.sh" |
70af249b CS |
505 | |
506 | clobber: _cleaner _mopup | |
4e2a5f63 | 507 | rm -f config.sh cppstdin Policy.sh |
70af249b CS |
508 | |
509 | distclean: clobber | |
510 | ||
511 | # Do not 'make _mopup' directly. | |
512 | _mopup: | |
cd4d8a96 | 513 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c |
fed7345c | 514 | rm -f perl.exp ext.libs |
d96ebe2e | 515 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
1cfa4ec7 | 516 | -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap |
70af249b CS |
517 | rm -f perl suidperl miniperl $(LIBPERL) |
518 | ||
519 | # Do not 'make _tidy' directly. | |
520 | _tidy: | |
a0d0e21e | 521 | -cd pod; $(MAKE) clean |
909b3858 | 522 | -cd utils; $(MAKE) clean |
523 | -cd x2p; $(MAKE) clean | |
4318d5a0 | 524 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
fb73857a | 525 | sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ |
a0d0e21e | 526 | done |
6ee623d5 | 527 | rm -f testcompile compilelog |
ff68c719 | 528 | |
529 | # Do not 'make _cleaner' directly. | |
530 | _cleaner: | |
4633a7c4 | 531 | -cd os2; rm -f Makefile |
909b3858 | 532 | -cd pod; $(MAKE) realclean |
533 | -cd utils; $(MAKE) realclean | |
534 | -cd x2p; $(MAKE) realclean | |
4318d5a0 | 535 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ |
fb73857a | 536 | sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \ |
a0d0e21e | 537 | done |
53905e35 | 538 | rm -f *.orig */*.orig *~ */*~ core core.perl.*.? core.miniperl.*.? perl.core miniperl.core t/core t/core.perl.*.? t/perl.core t/tmp???? t/c t/perl |
a0d0e21e | 539 | rm -rf $(addedbyconf) |
cd4d8a96 | 540 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old |
fed7345c | 541 | rm -f $(private) |
a0d0e21e | 542 | rm -rf lib/auto |
232e078e | 543 | rm -f lib/.exists |
16d20bd9 | 544 | rm -f h2ph.man pstruct |
a0d0e21e | 545 | rm -rf .config |
6ee623d5 | 546 | rm -f testcompile compilelog |
ecfc5424 | 547 | |
2304df62 AD |
548 | # The following lint has practically everything turned on. Unfortunately, |
549 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. | |
550 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message | |
551 | # for that spot. | |
552 | ||
553 | lint: perly.c $(c) | |
554 | lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz | |
555 | ||
fb73857a | 556 | # Need to unset during recursion to go out of loop. |
557 | # The README below ensures that the dependency list is never empty and | |
558 | # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding. | |
cd4d8a96 | 559 | |
84902520 | 560 | MAKEDEPEND = Makefile makedepend |
cd4d8a96 | 561 | |
fb73857a | 562 | $(FIRSTMAKEFILE): README $(MAKEDEPEND) |
cd4d8a96 | 563 | $(MAKE) depend MAKEDEPEND= |
a0d0e21e | 564 | |
599a829f | 565 | config.h: config_h.SH config.sh |
655635e8 | 566 | $(SHELL) config_h.SH |
567 | ||
419eaf7b JH |
568 | # This is an AIXism. |
569 | perl.exp: perl_exp.SH config.sh $(SYM) $(SYMH) | |
655635e8 | 570 | $(SHELL) perl_exp.SH |
75f92628 | 571 | |
a0d0e21e | 572 | # When done, touch perlmain.c so that it doesn't get remade each time. |
2304df62 | 573 | depend: makedepend |
fb73857a | 574 | sh ./makedepend MAKE=$(MAKE) |
a0d0e21e | 575 | - test -s perlmain.c && touch perlmain.c |
2304df62 AD |
576 | cd x2p; $(MAKE) depend |
577 | ||
cd4d8a96 | 578 | # Cannot postpone this until $firstmakefile is ready ;-) |
579 | makedepend: makedepend.SH config.sh | |
580 | sh ./makedepend.SH | |
581 | ||
4318d5a0 | 582 | test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) |
3e3baf6d TB |
583 | cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) |
584 | ||
585 | test check: test-prep | |
6ee623d5 | 586 | cd t && $(LDLIBPTH) ./perl TEST </dev/tty |
3e3baf6d | 587 | |
a0ed51b3 LW |
588 | utest ucheck: test-prep |
589 | cd t && $(LDLIBPTH) ./perl UTEST </dev/tty | |
590 | ||
3e3baf6d TB |
591 | # For testing without a tty or controling terminal. See t/op/stat.t |
592 | test-notty: test-prep | |
6ee623d5 | 593 | cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST |
2304df62 | 594 | |
d96ebe2e | 595 | # Can't depend on lib/Config.pm because that might be where miniperl |
596 | # is crashing. | |
a35c6d74 | 597 | minitest: miniperl lib/re.pm |
d96ebe2e | 598 | @echo "You may see some irrelevant test failures if you have been unable" |
599 | @echo "to build lib/Config.pm." | |
cd4d8a96 | 600 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ |
6ee623d5 | 601 | && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty |
16d20bd9 | 602 | |
fb73857a | 603 | # Handy way to run perlbug -ok without having to install and run the |
84902520 | 604 | # installed perlbug. We don't re-run the tests here - we trust the user. |
fb73857a | 605 | # Please *don't* use this unless all tests pass. |
1d2dff63 | 606 | # If you want to report test failures, use "make nok" instead. |
188cd53f | 607 | ok: utilities |
6ee623d5 | 608 | $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' |
84902520 | 609 | |
105f9295 HS |
610 | okfile: utilities |
611 | $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok | |
612 | ||
1d2dff63 GS |
613 | nok: utilities |
614 | $(LBLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' | |
615 | ||
85e6fe83 | 616 | clist: $(c) |
28e8609d | 617 | echo $(c) | tr ' ' $(TRNL) >.clist |
2304df62 | 618 | |
85e6fe83 | 619 | hlist: $(h) |
28e8609d | 620 | echo $(h) | tr ' ' $(TRNL) >.hlist |
2304df62 | 621 | |
85e6fe83 | 622 | shlist: $(sh) |
28e8609d | 623 | echo $(sh) | tr ' ' $(TRNL) >.shlist |
2304df62 | 624 | |
4633a7c4 | 625 | pllist: $(pl) |
28e8609d | 626 | echo $(pl) | tr ' ' $(TRNL) >.pllist |
4633a7c4 | 627 | |
599a829f | 628 | Makefile: Makefile.SH ./config.sh |
760ac839 LW |
629 | $(SHELL) Makefile.SH |
630 | ||
599a829f | 631 | distcheck: FORCE |
760ac839 LW |
632 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
633 | ||
771c4874 IZ |
634 | elc: emacs/cperl-mode.elc |
635 | ||
636 | emacs/cperl-mode.elc: emacs/cperl-mode.el | |
637 | -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el | |
638 | ||
639 | etags: emacs/cperl-mode.elc | |
3ee700d1 IZ |
640 | sh emacs/ptags |
641 | ||
2304df62 AD |
642 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
643 | # If this runs make out of memory, delete /usr/include lines. | |
644 | !NO!SUBS! | |
645 | ||
85e6fe83 | 646 | $eunicefix Makefile |
2304df62 AD |
647 | case `pwd` in |
648 | *SH) | |
85e6fe83 | 649 | $rm -f ../Makefile |
cd4d8a96 | 650 | $ln Makefile ../Makefile |
2304df62 AD |
651 | ;; |
652 | esac | |
cd4d8a96 | 653 | $rm -f $firstmakefile |
5ff3f7a4 GS |
654 | |
655 | # Now do any special processing required before building. | |
656 | ||
657 | case "$ebcdic" in | |
658 | $define) | |
659 | xxx='' | |
660 | echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4 | |
7a66b286 | 661 | case "$osname" in |
25e9a2e3 | 662 | os390|posix-bc) |
5ff3f7a4 GS |
663 | rm -f y.tab.c y.tab.h |
664 | yacc -d perly.y >/dev/null 2>&1 | |
665 | if cmp -s y.tab.c perly.c; then | |
666 | rm -f y.tab.c | |
667 | else | |
668 | echo "perly.y -> perly.c" >&2 | |
669 | mv -f y.tab.c perly.c | |
670 | chmod u+w perly.c | |
c8dba6f3 GS |
671 | sed -e '/^#include "perl\.h"/a\ |
672 | \ | |
673 | #define yydebug PL_yydebug\ | |
674 | #define yynerrs PL_yynerrs\ | |
675 | #define yyerrflag PL_yyerrflag\ | |
676 | #define yychar PL_yychar\ | |
c8dba6f3 GS |
677 | #define yyval PL_yyval\ |
678 | #define yylval PL_yylval' \ | |
679 | -e '/YYSTYPE *yyval;/D' \ | |
680 | -e '/YYSTYPE *yylval;/D' \ | |
681 | -e '/int yychar,/,/yynerrs;/D' \ | |
682 | -e 's/int yydebug = 0;/yydebug = 0;/' \ | |
683 | -e 's/[^_]realloc(/PerlMem_realloc(/g' \ | |
684 | -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ | |
5ff3f7a4 GS |
685 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c |
686 | xxx="$xxx perly.c" | |
687 | fi | |
688 | if cmp -s y.tab.h perly.h; then | |
689 | rm -f y.tab.h | |
690 | else | |
691 | echo "perly.y -> perly.h" >&2 | |
692 | mv -f y.tab.h perly.h | |
693 | xxx="$xxx perly.h" | |
694 | fi | |
695 | cd x2p | |
696 | rm -f y.tab.c | |
bba3460d | 697 | yacc -d a2p.y >/dev/null 2>&1 |
5ff3f7a4 GS |
698 | if cmp -s y.tab.c a2p.c |
699 | then | |
700 | rm -f y.tab.c | |
701 | else | |
702 | echo "a2p.y -> a2p.c" >&2 | |
703 | mv -f y.tab.c a2p.c | |
704 | chmod u+w a2p.c | |
705 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ | |
706 | -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c | |
707 | xxx="$xxx a2p.c" | |
708 | fi | |
709 | if cmp -s y.tab.h a2p.h | |
710 | then | |
711 | rm -f y.tab.h | |
712 | else | |
713 | echo "a2p.h -> a2p.h" >&2 | |
714 | mv -f y.tab.h a2p.h | |
715 | xxx="$xxx a2p.h" | |
716 | fi | |
717 | cd .. | |
7a66b286 JH |
718 | ;; |
719 | vmesa) | |
720 | # Do nothing in VM/ESA. | |
721 | ;; | |
fe572743 | 722 | esac |
5ff3f7a4 GS |
723 | case "$xxx" in |
724 | '') echo "No parser files were regenerated. That's okay." >&2 ;; | |
725 | esac | |
726 | ;; | |
727 | esac | |
728 |