Commit | Line | Data |
---|---|---|
599a829f | 1 | #! /bin/sh |
2304df62 AD |
2 | case $CONFIG in |
3 | '') | |
4 | if test -f config.sh; then TOP=.; | |
5 | elif test -f ../config.sh; then TOP=..; | |
6 | elif test -f ../../config.sh; then TOP=../..; | |
7 | elif test -f ../../../config.sh; then TOP=../../..; | |
8 | elif test -f ../../../../config.sh; then TOP=../../../..; | |
9 | else | |
10 | echo "Can't find config.sh."; exit 1 | |
11 | fi | |
12 | . $TOP/config.sh | |
13 | ;; | |
14 | esac | |
15 | : This forces SH files to create target in same directory as SH file. | |
16 | : This is so that make depend always knows where to find SH derivatives. | |
17 | case "$0" in | |
18 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; | |
19 | esac | |
20 | ||
2304df62 AD |
21 | case "$d_dosuid" in |
22 | *define*) suidperl='suidperl' ;; | |
23 | *) suidperl='';; | |
24 | esac | |
25 | ||
d5d19f97 | 26 | linklibperl='$(LIBPERL)' |
d96ebe2e | 27 | case "$useshrplib" in |
28 | true) | |
d5d19f97 | 29 | pldlflags="$cccdlflags" |
f0efd8cf | 30 | # NeXT-4 specific stuff. Can't we do this in the hint file? |
d96ebe2e | 31 | case "${osname}${osvers}" in |
32 | next4*) | |
d96ebe2e | 33 | ld='libtool -dynamic -undefined warning -framework System \ |
34 | -compatibility_version 1 -current_version $(PATCHLEVEL) \ | |
35 | -prebind -seg1addr 0x27000000 -install_name $(SHRPDIR)/$@' | |
36 | ;; | |
28757baa | 37 | sunos*|freebsd[23]*) |
d5d19f97 UP |
38 | linklibperl="-lperl" |
39 | ;; | |
655635e8 | 40 | esac |
d5d19f97 | 41 | ;; |
f0efd8cf | 42 | *) pldlflags='' |
d96ebe2e | 43 | ;; |
ecfc5424 AD |
44 | esac |
45 | ||
a0d0e21e LW |
46 | : Prepare dependency lists for Makefile. |
47 | dynamic_list=' ' | |
48 | for f in $dynamic_ext; do | |
49 | : the dependency named here will never exist | |
ecfc5424 | 50 | base=`echo "$f" | sed 's/.*\///'` |
75f92628 | 51 | dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext" |
a0d0e21e LW |
52 | done |
53 | ||
54 | static_list=' ' | |
a0d0e21e LW |
55 | for f in $static_ext; do |
56 | base=`echo "$f" | sed 's/.*\///'` | |
cd4d8a96 | 57 | static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)" |
a0d0e21e LW |
58 | done |
59 | ||
2304df62 | 60 | echo "Extracting Makefile (with variable substitutions)" |
655635e8 | 61 | $spitshell >Makefile <<!GROK!THIS! |
a0d0e21e | 62 | # Makefile.SH |
85e6fe83 LW |
63 | # This file is derived from Makefile.SH. Any changes made here will |
64 | # be lost the next time you run Configure. | |
655635e8 | 65 | # Makefile is used to generate $firstmakefile. The only difference |
66 | # is that $firstmakefile has the dependencies filled in at the end. | |
2304df62 | 67 | # |
fed7345c | 68 | # |
2304df62 AD |
69 | # I now supply perly.c with the kits, so don't remake perly.c without byacc |
70 | BYACC = $byacc | |
71 | CC = $cc | |
232e078e | 72 | LD = $ld |
16d20bd9 | 73 | |
2304df62 AD |
74 | LDFLAGS = $ldflags |
75 | CLDFLAGS = $ldflags | |
85e6fe83 | 76 | |
2304df62 AD |
77 | SMALL = $small |
78 | LARGE = $large $split | |
79 | mallocsrc = $mallocsrc | |
80 | mallocobj = $mallocobj | |
85e6fe83 | 81 | LNS = $lns |
2304df62 | 82 | RMS = rm -f |
85e6fe83 LW |
83 | ranlib = $ranlib |
84 | ||
16d20bd9 AD |
85 | # The following are mentioned only to make metaconfig include the |
86 | # appropriate questions in Configure. If you want to change these, | |
8e07c86e | 87 | # edit config.sh instead, or specify --man1dir=/wherever on |
16d20bd9 AD |
88 | # installman commandline. |
89 | bin = $installbin | |
90 | scriptdir = $scriptdir | |
d96ebe2e | 91 | shrpdir = $archlibexp/CORE |
16d20bd9 AD |
92 | privlib = $installprivlib |
93 | man1dir = $man1dir | |
94 | man1ext = $man1ext | |
95 | man3dir = $man3dir | |
96 | man3ext = $man3ext | |
97 | ||
85e6fe83 LW |
98 | # The following are used to build and install shared libraries for |
99 | # dynamic loading. | |
100 | LDDLFLAGS = $lddlflags | |
101 | CCDLFLAGS = $ccdlflags | |
a0d0e21e | 102 | DLSUFFIX = .$dlext |
ecfc5424 | 103 | PLDLFLAGS = $pldlflags |
d96ebe2e | 104 | LIBPERL = $libperl |
d5d19f97 | 105 | LLIBPERL= $linklibperl |
ecfc5424 | 106 | SHRPENV = $shrpenv |
a0d0e21e LW |
107 | |
108 | dynamic_ext = $dynamic_list | |
109 | static_ext = $static_list | |
110 | ext = \$(dynamic_ext) \$(static_ext) | |
cd4d8a96 | 111 | DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT) |
2304df62 AD |
112 | |
113 | libs = $libs $cryptlib | |
114 | ||
909b3858 | 115 | public = perl $suidperl utilities translators |
2304df62 AD |
116 | |
117 | shellflags = $shellflags | |
118 | ||
d96ebe2e | 119 | # This is set to MAKE=$make if your $make command doesn't |
120 | # do it for you. | |
121 | $make_set_make | |
4633a7c4 LW |
122 | |
123 | # These variables will be used in a future version to make | |
124 | # the make file more portable to non-unix systems. | |
125 | AR = $ar | |
126 | EXE_EXT = $exe_ext | |
127 | LIB_EXT = $lib_ext | |
128 | OBJ_EXT = $obj_ext | |
129 | PATH_SEP = $path_sep | |
130 | ||
131 | FIRSTMAKEFILE = $firstmakefile | |
132 | ||
133 | # Any special object files needed by this architecture, e.g. os2/os2.obj | |
134 | ARCHOBJS = $archobjs | |
135 | ||
cd4d8a96 | 136 | .SUFFIXES: .c \$(OBJ_EXT) |
137 | ||
d96ebe2e | 138 | # grrr |
139 | SHELL = $sh | |
655635e8 | 140 | |
2304df62 AD |
141 | !GROK!THIS! |
142 | ||
85e6fe83 | 143 | ## In the following dollars and backticks do not need the extra backslash. |
2304df62 AD |
144 | $spitshell >>Makefile <<'!NO!SUBS!' |
145 | ||
d96ebe2e | 146 | CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@` |
2304df62 | 147 | |
fed7345c | 148 | private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm |
2304df62 | 149 | |
4633a7c4 LW |
150 | # Files to be built with variable substitution before miniperl |
151 | # is available. | |
152 | sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \ | |
153 | makedir.SH perl_exp.SH writemain.SH | |
154 | ||
155 | shextract = Makefile cflags config.h makeaperl makedepend \ | |
655635e8 | 156 | makedir perl.exp writemain |
4633a7c4 LW |
157 | |
158 | # Files to be built with variable substitution after miniperl is | |
159 | # available. Dependencies handled manually below (for now). | |
2304df62 | 160 | |
909b3858 | 161 | pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL |
4633a7c4 | 162 | |
909b3858 | 163 | plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text |
4633a7c4 LW |
164 | |
165 | addedbyconf = UU $(shextract) $(plextract) pstruct | |
2304df62 | 166 | |
fed7345c | 167 | h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h |
a0d0e21e | 168 | h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h |
2304df62 | 169 | h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h |
d96ebe2e | 170 | h4 = regexp.h scope.h sv.h unixish.h util.h perlio.h |
2304df62 AD |
171 | h = $(h1) $(h2) $(h3) $(h4) |
172 | ||
a0d0e21e LW |
173 | c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c |
174 | c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c | |
760ac839 | 175 | c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c |
2304df62 | 176 | |
a0d0e21e | 177 | c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c |
2304df62 | 178 | |
cd4d8a96 | 179 | 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) |
180 | 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) | |
760ac839 | 181 | obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) |
655635e8 | 182 | |
4633a7c4 | 183 | obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) |
2304df62 | 184 | |
a0d0e21e LW |
185 | # Once perl has been Configure'd and built ok you build different |
186 | # perl variants (Debugging, Embedded, Multiplicity etc) by saying: | |
d96ebe2e | 187 | # make clean; make LIBPERL=libperl<type>.a |
a0d0e21e LW |
188 | # where <type> is some combination of 'd' and(or) 'e' or 'm'. |
189 | # See cflags to understand how this works. | |
190 | # | |
d96ebe2e | 191 | # This mechanism is getting clunky and might not even work any more. |
192 | # EMBEDDING is on by default, and MULTIPLICITY doesn't work. | |
193 | # | |
a0d0e21e | 194 | |
2304df62 AD |
195 | lintflags = -hbvxac |
196 | ||
cd4d8a96 | 197 | .c$(OBJ_EXT): |
d96ebe2e | 198 | $(CCCMD) $(PLDLFLAGS) $*.c |
2304df62 | 199 | |
655635e8 | 200 | all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext) |
909b3858 | 201 | @echo " "; echo " Everything is up to date." |
202 | ||
203 | translators: miniperl lib/Config.pm FORCE | |
a0d0e21e | 204 | @echo " "; echo " Making x2p stuff"; cd x2p; $(MAKE) all |
8e07c86e | 205 | |
909b3858 | 206 | utilities: miniperl lib/Config.pm FORCE |
207 | @echo " "; echo " Making utilities"; cd utils; $(MAKE) all | |
208 | ||
209 | ||
16d20bd9 AD |
210 | # This is now done by installman only if you actually want the man pages. |
211 | # @echo " "; echo " Making docs"; cd pod; $(MAKE) all; | |
85e6fe83 LW |
212 | |
213 | # Phony target to force checking subdirectories. | |
e50aee73 | 214 | # Apparently some makes require an action for the FORCE target. |
85e6fe83 | 215 | FORCE: |
4633a7c4 | 216 | @sh -c true |
85e6fe83 | 217 | |
cd4d8a96 | 218 | miniperlmain$(OBJ_EXT): miniperlmain.c |
d96ebe2e | 219 | $(CCCMD) $(PLDLFLAGS) $*.c |
ecfc5424 | 220 | |
655635e8 | 221 | perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE) |
a0d0e21e LW |
222 | sh writemain $(DYNALOADER) $(static_ext) > tmp |
223 | sh mv-if-diff tmp perlmain.c | |
85e6fe83 | 224 | |
cd4d8a96 | 225 | perlmain$(OBJ_EXT): perlmain.c |
d96ebe2e | 226 | $(CCCMD) $(PLDLFLAGS) $*.c |
85e6fe83 | 227 | |
a0d0e21e LW |
228 | # The file ext.libs is a list of libraries that must be linked in |
229 | # for static extensions, e.g. -lm -lgdbm, etc. The individual | |
230 | # static extension Makefile's add to it. | |
fed7345c | 231 | ext.libs: $(static_ext) |
a0d0e21e | 232 | -@test -f ext.libs || touch ext.libs |
85e6fe83 | 233 | |
ecfc5424 | 234 | !NO!SUBS! |
599a829f | 235 | |
d96ebe2e | 236 | # How to build libperl. This is still rather convoluted. |
599a829f | 237 | # Load up custom Makefile.SH fragment for shared loading and executables: |
d96ebe2e | 238 | if test -r $osname/Makefile.SHs ; then |
239 | . $osname/Makefile.SHs | |
240 | $spitshell >>Makefile <<!GROK!THIS! | |
cd4d8a96 | 241 | |
242 | Makefile: $osname/Makefile.SHs | |
cd4d8a96 | 243 | !GROK!THIS! |
244 | else | |
f0efd8cf | 245 | $spitshell >>Makefile <<'!NO!SUBS!' |
9c9e9f08 | 246 | $(LIBPERL): $& perl$(OBJ_EXT) $(obj) |
247 | !NO!SUBS! | |
d96ebe2e | 248 | case "$useshrplib" in |
249 | true) | |
250 | $spitshell >>Makefile <<'!NO!SUBS!' | |
5f05dabc | 251 | $(LD) $(LDDLFLAGS) -o $@ perl$(OBJ_EXT) $(obj) $(libs) |
ecfc5424 | 252 | !NO!SUBS! |
d96ebe2e | 253 | ;; |
254 | *) | |
255 | $spitshell >>Makefile <<'!NO!SUBS!' | |
256 | rm -f $(LIBPERL) | |
257 | $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj) | |
258 | @$(ranlib) $(LIBPERL) | |
655635e8 | 259 | !NO!SUBS! |
d96ebe2e | 260 | ;; |
261 | esac | |
599a829f IZ |
262 | $spitshell >>Makefile <<'!NO!SUBS!' |
263 | ||
264 | # How to build executables. | |
265 | ||
266 | # The $& notation tells Sequent machines that it can do a parallel make, | |
267 | # and is harmless otherwise. | |
268 | # The miniperl -w -MExporter line is a basic cheap test to catch errors | |
269 | # before make goes on to run preplibrary and then MakeMaker on extensions. | |
270 | # This is very handy because later errors are often caused by miniperl | |
271 | # build problems but that's not obvious to the novice. | |
272 | # The Module used here must not depend on Config or any extensions. | |
273 | ||
274 | miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) | |
d5d19f97 | 275 | $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs) |
599a829f IZ |
276 | @./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest |
277 | ||
278 | perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs | |
d5d19f97 | 279 | $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f IZ |
280 | |
281 | pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs | |
d5d19f97 | 282 | purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
599a829f IZ |
283 | |
284 | quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs | |
d5d19f97 | 285 | quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 AD |
286 | |
287 | # This version, if specified in Configure, does ONLY those scripts which need | |
288 | # set-id emulation. Suidperl must be setuid root. It contains the "taint" | |
289 | # checks as well as the special code to validate that the script in question | |
290 | # has been invoked correctly. | |
291 | ||
d96ebe2e | 292 | suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs |
28757baa | 293 | $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |
2304df62 | 294 | |
599a829f IZ |
295 | !NO!SUBS! |
296 | ||
297 | fi | |
298 | ||
299 | $spitshell >>Makefile <<'!NO!SUBS!' | |
300 | ||
cd4d8a96 | 301 | sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h) |
2304df62 | 302 | $(RMS) sperl.c |
85e6fe83 | 303 | $(LNS) perl.c sperl.c |
d96ebe2e | 304 | $(CCCMD) -DIAMSUID sperl.c |
2304df62 AD |
305 | $(RMS) sperl.c |
306 | ||
fec02dd3 AD |
307 | # We have to call our ./makedir because Ultrix 4.3 make can't handle the line |
308 | # test -d lib/auto || mkdir lib/auto | |
309 | # | |
4633a7c4 | 310 | preplibrary: miniperl lib/Config.pm $(plextract) |
cd4d8a96 | 311 | @sh ./makedir lib/auto |
a0d0e21e LW |
312 | @echo " AutoSplitting perl library" |
313 | @./miniperl -Ilib -e 'use AutoSplit; \ | |
314 | autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm | |
2304df62 | 315 | |
75f92628 | 316 | # Take care to avoid modifying lib/Config.pm without reason |
655635e8 | 317 | lib/Config.pm: config.sh miniperl configpm |
75f92628 AD |
318 | ./miniperl configpm tmp |
319 | sh mv-if-diff tmp lib/Config.pm | |
2304df62 | 320 | |
37120919 AD |
321 | lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm |
322 | ./miniperl minimod.pl > tmp && mv tmp $@ | |
fed7345c | 323 | |
4633a7c4 LW |
324 | $(plextract): miniperl lib/Config.pm |
325 | ./miniperl -Ilib $@.PL | |
326 | ||
16d20bd9 AD |
327 | install: all install.perl install.man |
328 | ||
cd4d8a96 | 329 | install.perl: all installperl |
2304df62 | 330 | ./perl installperl |
a0d0e21e | 331 | |
cd4d8a96 | 332 | install.man: all installman |
16d20bd9 AD |
333 | ./perl installman |
334 | ||
335 | # Not implemented yet. | |
cd4d8a96 | 336 | #install.html: all installhtml |
16d20bd9 AD |
337 | # ./perl installhtml |
338 | ||
a0d0e21e | 339 | # I now supply perly.c with the kits, so the following section is |
56febc5e AD |
340 | # used only if you force byacc to run by saying |
341 | # make run_byacc | |
342 | # Since we patch up the byacc output, the perly.fixer script needs | |
343 | # to run with precisely the same version of byacc as I use. You | |
344 | # normally shouldn't remake perly.[ch]. | |
345 | ||
232e078e | 346 | run_byacc: FORCE |
28757baa | 347 | @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict |
56febc5e AD |
348 | $(BYACC) -d perly.y |
349 | sh $(shellflags) ./perly.fixer y.tab.c perly.c | |
55497cff | 350 | sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \ |
351 | -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c | |
352 | echo 'extern YYSTYPE yylval;' >>y.tab.h | |
353 | cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h | |
4633a7c4 | 354 | - perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms |
56febc5e AD |
355 | |
356 | # We don't want to regenerate perly.c and perly.h, but they might | |
357 | # appear out-of-date after a patch is applied or a new distribution is | |
358 | # made. | |
359 | perly.c: perly.y | |
cd4d8a96 | 360 | -@sh -c true |
56febc5e AD |
361 | |
362 | perly.h: perly.y | |
cd4d8a96 | 363 | -@sh -c true |
a0d0e21e | 364 | |
e50aee73 AD |
365 | # The following three header files are generated automatically |
366 | # keywords.h: keywords.pl | |
367 | # opcode.h: opcode.pl | |
368 | # embed.h: embed.pl global.sym interp.sym | |
369 | # The correct versions should be already supplied with the perl kit, | |
370 | # in case you don't have perl available. | |
371 | # To force them to run, type | |
372 | # make regen_headers | |
373 | regen_headers: FORCE | |
374 | perl keywords.pl | |
375 | perl opcode.pl | |
376 | perl embed.pl | |
8e07c86e | 377 | |
a0d0e21e LW |
378 | # Extensions: |
379 | # Names added to $(dynamic_ext) or $(static_ext) will automatically | |
fed7345c | 380 | # get built. There should ordinarily be no need to change any of |
a0d0e21e LW |
381 | # this part of makefile. |
382 | # | |
383 | # The dummy dependency is a place holder in case $(dynamic_ext) or | |
384 | # $(static_ext) is empty. | |
385 | # | |
386 | # DynaLoader may be needed for extensions that use Makefile.PL. | |
387 | ||
388 | $(DYNALOADER): miniperl preplibrary FORCE | |
d96ebe2e | 389 | @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL) |
a0d0e21e LW |
390 | |
391 | d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE | |
d96ebe2e | 392 | @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(LIBPERL) |
a0d0e21e LW |
393 | |
394 | s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE | |
d96ebe2e | 395 | @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL) |
2304df62 | 396 | |
70af249b CS |
397 | clean: _tidy _mopop |
398 | ||
399 | realclean: _cleaner _mopup | |
400 | @echo "Note that make realclean does not delete config.sh" | |
401 | ||
402 | clobber: _cleaner _mopup | |
403 | rm -f config.sh cppstdin | |
404 | ||
405 | distclean: clobber | |
406 | ||
407 | # Do not 'make _mopup' directly. | |
408 | _mopup: | |
cd4d8a96 | 409 | rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c |
fed7345c | 410 | rm -f perl.exp ext.libs |
d96ebe2e | 411 | -rm -f perl.export perl.dll perl.libexp perl.map perl.def |
70af249b CS |
412 | rm -f perl suidperl miniperl $(LIBPERL) |
413 | ||
414 | # Do not 'make _tidy' directly. | |
415 | _tidy: | |
a0d0e21e | 416 | -cd pod; $(MAKE) clean |
909b3858 | 417 | -cd utils; $(MAKE) clean |
418 | -cd x2p; $(MAKE) clean | |
75f92628 | 419 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \ |
42793c05 | 420 | sh ext/util/make_ext clean $$x ; \ |
a0d0e21e | 421 | done |
ff68c719 | 422 | |
423 | # Do not 'make _cleaner' directly. | |
424 | _cleaner: | |
4633a7c4 | 425 | -cd os2; rm -f Makefile |
909b3858 | 426 | -cd pod; $(MAKE) realclean |
427 | -cd utils; $(MAKE) realclean | |
428 | -cd x2p; $(MAKE) realclean | |
8e07c86e | 429 | -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \ |
42793c05 | 430 | sh ext/util/make_ext realclean $$x ; \ |
a0d0e21e | 431 | done |
42793c05 | 432 | rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl |
a0d0e21e | 433 | rm -rf $(addedbyconf) |
cd4d8a96 | 434 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old |
fed7345c | 435 | rm -f $(private) |
a0d0e21e | 436 | rm -rf lib/auto |
232e078e | 437 | rm -f lib/.exists |
16d20bd9 | 438 | rm -f h2ph.man pstruct |
a0d0e21e | 439 | rm -rf .config |
ecfc5424 | 440 | |
2304df62 AD |
441 | # The following lint has practically everything turned on. Unfortunately, |
442 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. | |
443 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message | |
444 | # for that spot. | |
445 | ||
446 | lint: perly.c $(c) | |
447 | lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz | |
448 | ||
cd4d8a96 | 449 | # Need to unset during recursion to go out of loop |
450 | ||
451 | MAKEDEPEND = makedepend | |
452 | ||
453 | $(FIRSTMAKEFILE): Makefile $(MAKEDEPEND) | |
454 | $(MAKE) depend MAKEDEPEND= | |
a0d0e21e | 455 | |
599a829f | 456 | config.h: config_h.SH config.sh |
655635e8 | 457 | $(SHELL) config_h.SH |
458 | ||
459 | perl.exp: perl_exp.SH config.sh | |
460 | $(SHELL) perl_exp.SH | |
75f92628 | 461 | |
a0d0e21e | 462 | # When done, touch perlmain.c so that it doesn't get remade each time. |
2304df62 | 463 | depend: makedepend |
cd4d8a96 | 464 | sh ./makedepend |
a0d0e21e | 465 | - test -s perlmain.c && touch perlmain.c |
2304df62 AD |
466 | cd x2p; $(MAKE) depend |
467 | ||
cd4d8a96 | 468 | # Cannot postpone this until $firstmakefile is ready ;-) |
469 | makedepend: makedepend.SH config.sh | |
470 | sh ./makedepend.SH | |
471 | ||
d96ebe2e | 472 | check test: miniperl perl preplibrary $(dynamic_ext) |
cd4d8a96 | 473 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) && ./perl TEST </dev/tty |
2304df62 | 474 | |
d96ebe2e | 475 | # Can't depend on lib/Config.pm because that might be where miniperl |
476 | # is crashing. | |
599a829f | 477 | minitest: miniperl |
d96ebe2e | 478 | @echo "You may see some irrelevant test failures if you have been unable" |
479 | @echo "to build lib/Config.pm." | |
cd4d8a96 | 480 | - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \ |
44a8e56a | 481 | && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty |
16d20bd9 | 482 | |
85e6fe83 | 483 | clist: $(c) |
2304df62 AD |
484 | echo $(c) | tr ' ' '\012' >.clist |
485 | ||
85e6fe83 | 486 | hlist: $(h) |
2304df62 AD |
487 | echo $(h) | tr ' ' '\012' >.hlist |
488 | ||
85e6fe83 | 489 | shlist: $(sh) |
2304df62 AD |
490 | echo $(sh) | tr ' ' '\012' >.shlist |
491 | ||
4633a7c4 LW |
492 | pllist: $(pl) |
493 | echo $(pl) | tr ' ' '\012' >.pllist | |
494 | ||
599a829f | 495 | Makefile: Makefile.SH ./config.sh |
760ac839 LW |
496 | $(SHELL) Makefile.SH |
497 | ||
599a829f | 498 | distcheck: FORCE |
760ac839 LW |
499 | perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()' |
500 | ||
2304df62 AD |
501 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
502 | # If this runs make out of memory, delete /usr/include lines. | |
503 | !NO!SUBS! | |
504 | ||
85e6fe83 | 505 | $eunicefix Makefile |
2304df62 AD |
506 | case `pwd` in |
507 | *SH) | |
85e6fe83 | 508 | $rm -f ../Makefile |
cd4d8a96 | 509 | $ln Makefile ../Makefile |
2304df62 AD |
510 | ;; |
511 | esac | |
cd4d8a96 | 512 | $rm -f $firstmakefile |