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