This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
e98c9d697f1a6632fdc1a1cabc67817bf6e5c8f7
[perl5.git] / Makefile.SH
1 case $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         ;;
13 esac
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.
16 case "$0" in
17 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
18 esac
19
20 case "$d_dosuid" in
21 *define*) suidperl='suidperl' ;;
22 *) suidperl='';;
23 esac
24
25 shrpenv=""
26 case "$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="";;
42 esac
43
44 : Prepare dependency lists for Makefile.
45 dynamic_list=' '
46 for f in $dynamic_ext; do
47     : the dependency named here will never exist
48       base=`echo "$f" | sed 's/.*\///'`
49     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
50 done
51
52 static_list=' '
53 static_ai_list=' '
54 for f in $static_ext; do
55         base=`echo "$f" | sed 's/.*\///'`
56         static_list="$static_list lib/auto/$f/$base.a"
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
63 done
64
65 echo "Extracting Makefile (with variable substitutions)"
66 $spitshell >Makefile <<'!NO!SUBS!'
67 # Makefile.SH
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.
72 #
73 #
74 !NO!SUBS!
75
76 $spitshell >>Makefile <<!GROK!THIS!
77 # I now supply perly.c with the kits, so don't remake perly.c without byacc
78 BYACC = $byacc
79 CC = $cc
80 bin = $installbin
81 scriptdir = $scriptdir
82 privlib = $installprivlib
83 mansrc = $mansrc
84 manext = $manext
85 LDFLAGS = $ldflags
86 CLDFLAGS = $ldflags
87
88 SMALL = $small
89 LARGE = $large $split
90 mallocsrc = $mallocsrc
91 mallocobj = $mallocobj
92 LNS = $lns
93 RMS = rm -f
94 ranlib = $ranlib
95
96 # The following are used to build and install shared libraries for
97 # dynamic loading.
98 LDDLFLAGS = $lddlflags
99 CCDLFLAGS = $ccdlflags
100 DLSUFFIX = .$dlext
101 PLDLFLAGS = $pldlflags
102 PLIBSUF = $plibsuf
103 SHRPENV = $shrpenv
104
105 dynamic_ext = $dynamic_list
106 static_ext = $static_list
107 ext = \$(dynamic_ext) \$(static_ext)
108 static_ext_autoinit = $static_ai_list
109 DYNALOADER = lib/auto/DynaLoader/DynaLoader.a
110
111
112 libs = $libs $cryptlib
113
114 public = perl $suidperl
115
116 shellflags = $shellflags
117
118 ## To use an alternate make, set \$altmake in config.sh.
119 MAKE = ${altmake-make}
120 !GROK!THIS!
121
122 ## In the following dollars and backticks do not need the extra backslash.
123 $spitshell >>Makefile <<'!NO!SUBS!'
124
125 CCCMD = `sh $(shellflags) cflags $(perllib) $@`
126
127 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
128
129 scripts =
130
131 manpages = perl.man
132
133 util =
134
135 sh = Makefile.SH cflags.SH makedepend.SH makedir.SH writemain.SH
136
137 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
138 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
139 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
140 h4 = regexp.h scope.h sv.h unixish.h util.h
141 h = $(h1) $(h2) $(h3) $(h4)
142
143 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
144 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
145 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c globals.c
146
147 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
148
149 obj1 = $(mallocobj) gv.o toke.o perly.o op.o regcomp.o dump.o util.o mg.o
150 obj2 = hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o
151 obj3 = doop.o doio.o regexec.o taint.o deb.o globals.o
152
153 obj = $(obj1) $(obj2) $(obj3)
154
155 # Once perl has been Configure'd and built ok you build different
156 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
157 #       make clean; make perllib=libperl<type>.a
158 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
159 # See cflags to understand how this works.
160 #
161 # Eventually some form of 'make-a-perl' script will automate this
162 # together with linking a perl executable with any desired
163 # static modules.
164 perllib = libperl$(PLIBSUF)
165
166 lintflags = -hbvxac
167
168 addedbyconf = UU
169
170 # grrr
171 SHELL = /bin/sh
172
173 .c.o:
174         $(CCCMD) $(PLDLFLAGS) $*.c
175
176 all: makefile miniperl $(private) $(public) $(dynamic_ext)
177         @echo " "; echo "       Making x2p stuff"; cd x2p; $(MAKE) all
178         @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
179
180 # Phony target to force checking subdirectories.
181 FORCE:
182
183 !NO!SUBS!
184
185 : Now on to the rest of the Makefile.
186 $spitshell >>Makefile <<'!NO!SUBS!'
187 # The $& notation tells Sequent machines that it can do a parallel make,
188 # and is harmless otherwise.
189
190 miniperl: $& miniperlmain.o $(perllib)
191         $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain.o $(perllib) $(libs)
192
193 miniperlmain.o: miniperlmain.c
194         $(CCCMD) $(PLDLFLAGS) $*.c
195
196 perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
197         sh writemain $(DYNALOADER) $(static_ext) > tmp
198         sh mv-if-diff tmp perlmain.c
199
200 perlmain.o: perlmain.c
201         $(CCCMD) $(PLDLFLAGS) $*.c
202
203 # The file ext.libs is a list of libraries that must be linked in
204 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
205 # static extension Makefile's add to it.
206 ext.libs: $(static_ext)
207         -@test -f ext.libs || touch ext.libs
208
209 perl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
210         $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
211
212 pureperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
213         purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
214
215 quantperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
216         quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
217
218 $(perllib): $& perl.o $(obj)
219 !NO!SUBS!
220
221 case "$d_shrplib" in
222 *define*)
223 $spitshell >>Makefile <<'!NO!SUBS!'
224         ld $(LDDLFLAGS) -o $@ perl.o $(obj)
225 !NO!SUBS!
226 ;;
227 *)
228 $spitshell >>Makefile <<'!NO!SUBS!'
229         ar rcu $(perllib) perl.o $(obj)
230         @$(ranlib) $(perllib)
231 !NO!SUBS!
232 ;;
233 esac
234
235 $spitshell >>Makefile <<'!NO!SUBS!'
236
237 # This version, if specified in Configure, does ONLY those scripts which need
238 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
239 # checks as well as the special code to validate that the script in question
240 # has been invoked correctly.
241
242 suidperl: $& sperl.o perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
243         $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain.o sperl.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
244
245 sperl.o: perl.c perly.h patchlevel.h $(h)
246         $(RMS) sperl.c
247         $(LNS) perl.c sperl.c
248         $(CCCMD) -DIAMSUID sperl.c
249         $(RMS) sperl.c
250
251 opcode.h: opcode.pl
252         - perl opcode.pl
253
254 embed.h: embed_h.sh global.sym interp.sym
255         sh embed_h.sh
256
257 preplibrary: miniperl lib/Config.pm
258         @./makedir lib/auto
259         @echo " AutoSplitting perl library"
260         @./miniperl -Ilib -e 'use AutoSplit; \
261                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
262
263 # Take care to avoid modifying lib/Config.pm without reason
264 lib/Config.pm: config.sh miniperl
265         ./miniperl configpm tmp
266         sh mv-if-diff tmp lib/Config.pm
267
268 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.PL lib/Config.pm
269         ./miniperl minimod.PL > tmp && mv tmp $@
270
271 install: all
272         ./perl installperl
273 !NO!SUBS!
274
275 : Only print out the rules for running byacc if the user _has_ byacc.
276 : Otherwise, comment them out.  Users who really know what they are
277 : doing can uncomment them and run yacc or bison or whatever.
278 case "$d_byacc" in
279 'define')
280         comment1=''
281         comment2='#' ;;
282 *)      comment1='#'
283         comment2='' ;;
284 esac
285
286 $spitshell >>Makefile <<!GROK!THIS!
287
288 perly.h: perly.c
289         @ echo Dummy dependency for dumb parallel make
290         touch perly.h
291
292 # I now supply perly.c with the kits, so the following section is
293 # used only if you have byacc.
294
295 ${comment1}perly.c:     perly.y perly.c.diff
296 ${comment1}     @ echo 'Expect' 109 shift/reduce and 1 reduce/reduce conflict
297 ${comment1}     \$(BYACC) -d perly.y
298 ${comment1}     sh \$(shellflags) ./perly.fixer y.tab.c perly.c
299 ${comment1}     mv y.tab.h perly.h
300 ${comment1}     echo 'extern YYSTYPE yylval;' >>perly.h
301
302 # This version is used if you do not have byacc.
303 ${comment2}perly.c:     perly.y
304 ${comment2}     touch perly.c
305
306 !GROK!THIS!
307
308 $spitshell >>Makefile <<'!NO!SUBS!'
309 # Extensions:
310 # Names added to $(dynamic_ext) or $(static_ext) will automatically
311 # get built.  There should ordinarily be no need to change any of
312 # this part of makefile.
313 #
314 # The dummy dependency is a place holder in case $(dynamic_ext) or
315 # $(static_ext) is empty.
316 #
317 # DynaLoader may be needed for extensions that use Makefile.PL.
318
319 $(DYNALOADER):  miniperl preplibrary FORCE
320         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
321
322 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
323         @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(perllib)
324
325 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
326         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
327
328 clean:
329         rm -f *.o *.a all perlmain.c
330         rm -f perl.exp ext.libs
331         -cd x2p; $(MAKE) clean
332         -cd pod; $(MAKE) clean
333         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
334         sh ext/util/make_ext clean $$x ; \
335         done
336         rm -f perl suidperl miniperl $(perllib)
337
338 realclean: clean
339         -cd x2p; $(MAKE) realclean
340         @for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
341         sh ext/util/make_ext realclean $$x ; \
342         done
343         rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
344         rm -rf $(addedbyconf)
345         rm -f Makefile cflags makedepend makedir writemain
346         rm -f config.h makefile makefile.old
347         rm -f $(private)
348         rm -rf lib/auto
349         rm -f h2ph h2ph.man c2ph pstruct
350         rm -rf .config
351         @echo "Note that make realclean does not delete config.sh"
352
353 clobber:        realclean
354         rm -f config.sh cppstdin
355
356 distclean:      clobber
357
358 # The following lint has practically everything turned on.  Unfortunately,
359 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
360 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
361 # for that spot.
362
363 lint: perly.c $(c)
364         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
365
366 makefile:       Makefile
367         $(MAKE) depend
368
369 config.h: config.sh
370         /bin/sh config_h.SH
371
372 # When done, touch perlmain.c so that it doesn't get remade each time.
373 depend: makedepend
374         - test -f perly.h || cp /dev/null perly.h
375         ./makedepend
376         - test -s perly.h || /bin/rm -f perly.h
377         - test -s perlmain.c && touch perlmain.c
378         cd x2p; $(MAKE) depend
379
380 test: miniperl perl preplibrary $(dynamic_ext)
381         - cd t && chmod +x TEST */*.t
382         - cd t && (rm -f perl; $(LNS) ../perl perl) && ./perl TEST </dev/tty
383
384 clist:  $(c)
385         echo $(c) | tr ' ' '\012' >.clist
386
387 hlist:  $(h)
388         echo $(h) | tr ' ' '\012' >.hlist
389
390 shlist: $(sh)
391         echo $(sh) | tr ' ' '\012' >.shlist
392
393 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
394 # If this runs make out of memory, delete /usr/include lines.
395 !NO!SUBS!
396
397 $eunicefix Makefile
398 case `pwd` in
399 *SH)
400     $rm -f ../Makefile
401     ln Makefile ../Makefile
402     ;;
403 esac
404 rm -f makefile