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