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