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