]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
This commit was generated by cvs2svn to compensate for changes in r98841,
[FreeBSD/FreeBSD.git] / Makefile.inc1
1 #
2 # $FreeBSD$
3 #
4 # Make command line options:
5 #       -DMAKE_KERBEROS4 to build KerberosIV
6 #       -DMAKE_KERBEROS5 to build Kerberos5
7 #       -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
8 #       -DNOCLEAN do not clean at all
9 #       -DNOCRYPT will prevent building of crypt versions
10 #       -DNOPROFILE do not build profiled libraries
11 #       -DNOSECURE do not go into secure subdir
12 #       -DNOGAMES do not go into games subdir
13 #       -DNOSHARE do not go into share subdir
14 #       -DNOINFO do not make or install info files
15 #       -DNOLIBC_R do not build libc_r.
16 #       -DNO_FORTRAN do not build g77 and related libraries.
17 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
18 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
19 #       -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
20 #       -DNO_PORTSUPDATE do not update ports in ${MAKE} update
21 #       -DNO_DOCUPDATE do not update doc in ${MAKE} update
22 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
23 #       TARGET_ARCH="arch" to crossbuild world to a different arch
24
25 #
26 # The intended user-driven targets are:
27 # buildworld  - rebuild *everything*, including glue to help do upgrades
28 # installworld- install everything built by "buildworld"
29 # update      - convenient way to update your source tree (eg: sup/cvs)
30 # most        - build user commands, no libraries or include files
31 # installmost - install user commands, no libraries or include files
32 #
33 # Standard targets (not defined here) are documented in the makefiles in
34 # /usr/share/mk.  These include:
35 #               obj depend all install clean cleandepend cleanobj
36
37 # Put initial settings here.
38 SUBDIR=
39
40 # We must do share/info early so that installation of info `dir'
41 # entries works correctly.  Do it first since it is less likely to
42 # grow dependencies on include and lib than vice versa.
43 .if exists(${.CURDIR}/share/info)
44 SUBDIR+= share/info
45 .endif
46
47 .if exists(${.CURDIR}/include)
48 SUBDIR+= include
49 .endif
50 .if exists(${.CURDIR}/lib)
51 SUBDIR+= lib
52 .endif
53
54 .if exists(${.CURDIR}/bin)
55 SUBDIR+= bin
56 .endif
57 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
58 SUBDIR+= games
59 .endif
60 .if exists(${.CURDIR}/gnu)
61 SUBDIR+= gnu
62 .endif
63 .if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
64     !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS4)
65 SUBDIR+= kerberosIV
66 .endif
67 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
68     !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS5)
69 SUBDIR+= kerberos5
70 .endif
71 .if exists(${.CURDIR}/libexec)
72 SUBDIR+= libexec
73 .endif
74 .if exists(${.CURDIR}/sbin)
75 SUBDIR+= sbin
76 .endif
77 .if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
78 SUBDIR+= secure
79 .endif
80 .if exists(${.CURDIR}/share) && !defined(NOSHARE)
81 SUBDIR+= share
82 .endif
83 .if exists(${.CURDIR}/sys)
84 SUBDIR+= sys
85 .endif
86 .if exists(${.CURDIR}/usr.bin)
87 SUBDIR+= usr.bin
88 .endif
89 .if exists(${.CURDIR}/usr.sbin)
90 SUBDIR+= usr.sbin
91 .endif
92
93 # etc must be last for "distribute" to work
94 .if exists(${.CURDIR}/etc)
95 SUBDIR+= etc
96 .endif
97
98 # These are last, since it is nice to at least get the base system
99 # rebuilt before you do them.
100 .if defined(LOCAL_DIRS)
101 .for _DIR in ${LOCAL_DIRS}
102 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
103 SUBDIR+= ${_DIR}
104 .endif
105 .endfor
106 .endif
107
108 .if defined(SUBDIR_OVERRIDE)
109 SUBDIR=         ${SUBDIR_OVERRIDE}
110 .endif
111
112 .if defined(NOCLEANDIR)
113 CLEANDIR=       clean cleandepend
114 .else
115 CLEANDIR=       cleandir
116 .endif
117
118 CVS?=           cvs
119 SUP?=           /usr/local/bin/cvsup
120 SUPFLAGS?=      -g -L 2 -P -
121 .if defined(SUPHOST)
122 SUPFLAGS+=      -h ${SUPHOST}
123 .endif
124
125 MAKEOBJDIRPREFIX?=      /usr/obj
126 TARGET_ARCH?=   ${MACHINE_ARCH}
127 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
128 TARGET?=        ${MACHINE}
129 .else
130 TARGET?=        ${TARGET_ARCH}
131 .endif
132 .if make(buildworld)
133 BUILD_ARCH!=    sysctl -n hw.machine_arch
134 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
135 .error To cross-build, set TARGET_ARCH.
136 .endif
137 .endif
138 .if ${MACHINE} == ${TARGET}
139 OBJTREE=        ${MAKEOBJDIRPREFIX}
140 .else
141 OBJTREE=        ${MAKEOBJDIRPREFIX}/${TARGET}
142 .endif
143 WORLDTMP=       ${OBJTREE}${.CURDIR}/${MACHINE_ARCH}
144 # /usr/games added for fortune which depend on strfile
145 STRICTTMPPATH=  ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
146 TMPPATH=        ${STRICTTMPPATH}:${PATH}
147 OBJFORMAT_PATH?=        /usr/libexec
148
149 INSTALLTMP!=    /usr/bin/mktemp -d -u -t install
150
151 #
152 # Building a world goes through the following stages
153 #
154 # 1. bootstrap-tool stage [BMAKE]
155 #       This stage is responsible for creating programs that
156 #       are needed for backward compatibility reasons. They
157 #       are not built as cross-tools.
158 # 2. build-tool stage [TMAKE]
159 #       This stage is responsible for creating the object
160 #       tree and building any tools that are needed during
161 #       the build process.
162 # 3. cross-tool stage [XMAKE]
163 #       This stage is responsible for creating any tools that
164 #       are needed for cross-builds. A cross-compiler is one
165 #       of them.
166 # 4. world stage [WMAKE]
167 #       This stage actually builds the world.
168 # 5. install stage (optional) [IMAKE]
169 #       This stage installs a previously built world.
170 #
171
172 # Common environment for world related stages
173 CROSSENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
174                 MACHINE_ARCH=${TARGET_ARCH} \
175                 MACHINE=${TARGET} \
176                 OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \
177                 GROFF_BIN_PATH=${WORLDTMP}/usr/bin \
178                 GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \
179                 GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac
180
181 # bootstrap-tool stage
182 BMAKEENV=       MAKEOBJDIRPREFIX=${WORLDTMP} \
183                 DESTDIR= \
184                 INSTALL="sh ${.CURDIR}/tools/install.sh"
185 BMAKE=          ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
186                 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
187                 -DNO_WERROR
188
189 # build-tool stage
190 TMAKEENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
191                 DESTDIR= \
192                 INSTALL="sh ${.CURDIR}/tools/install.sh"
193 TMAKE=          ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING
194
195 # cross-tool stage
196 XMAKE=          TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
197
198 # world stage
199 WMAKEENV=       ${CROSSENV} \
200                 DESTDIR=${WORLDTMP} \
201                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
202                 PATH=${TMPPATH}
203 WMAKE=          ${WMAKEENV} ${MAKE} -f Makefile.inc1
204
205 # install stage
206 IMAKEENV=       ${CROSSENV} \
207                 PATH=${STRICTTMPPATH}:${INSTALLTMP}
208 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1
209
210 # kernel stage
211 KMAKEENV=       ${WMAKEENV} \
212                 OBJFORMAT_PATH=${WORLDTMP}/usr/libexec:${OBJFORMAT_PATH}
213
214 USRDIRS=        usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \
215                 usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc \
216                 usr/share/dict \
217                 usr/share/groff_font/devX100 \
218                 usr/share/groff_font/devX100-12 \
219                 usr/share/groff_font/devX75 \
220                 usr/share/groff_font/devX75-12 \
221                 usr/share/groff_font/devascii \
222                 usr/share/groff_font/devcp1047 \
223                 usr/share/groff_font/devdvi \
224                 usr/share/groff_font/devhtml \
225                 usr/share/groff_font/devkoi8-r \
226                 usr/share/groff_font/devlatin1 \
227                 usr/share/groff_font/devlbp \
228                 usr/share/groff_font/devlj4 \
229                 usr/share/groff_font/devps \
230                 usr/share/groff_font/devutf8 \
231                 usr/share/tmac/mdoc usr/share/tmac/mm
232
233 INCDIRS=        arpa dev fs g++/backward g++/bits g++/ext isc isofs libmilter \
234                 objc openssl protocols readline rpc rpcsvc security ufs
235
236 #
237 # buildworld
238 #
239 # Attempt to rebuild the entire system, with reasonable chance of
240 # success, regardless of how old your existing system is.
241 #
242 _worldtmp:
243         @echo
244         @echo "--------------------------------------------------------------"
245         @echo ">>> Rebuilding the temporary build tree"
246         @echo "--------------------------------------------------------------"
247 .if !defined(NOCLEAN)
248         rm -rf ${WORLDTMP}
249 .else
250         # XXX - These two can depend on any header file.
251         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
252         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
253 .endif
254 .for _dir in ${USRDIRS}
255         mkdir -p ${WORLDTMP}/${_dir}
256 .endfor
257 .for _dir in ${INCDIRS}
258         mkdir -p ${WORLDTMP}/usr/include/${_dir}
259 .endfor
260         ln -sf ${.CURDIR}/sys ${WORLDTMP}
261 _bootstrap-tools:
262         @echo
263         @echo "--------------------------------------------------------------"
264         @echo ">>> stage 1: bootstrap tools"
265         @echo "--------------------------------------------------------------"
266         cd ${.CURDIR}; ${BMAKE} bootstrap-tools
267 _cleanobj:
268 .if !defined(NOCLEAN)
269         @echo
270         @echo "--------------------------------------------------------------"
271         @echo ">>> stage 2: cleaning up the object tree"
272         @echo "--------------------------------------------------------------"
273         cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
274 .endif
275 _obj:
276         @echo
277         @echo "--------------------------------------------------------------"
278         @echo ">>> stage 2: rebuilding the object tree"
279         @echo "--------------------------------------------------------------"
280         cd ${.CURDIR}; ${WMAKE} par-obj
281 _build-tools:
282         @echo
283         @echo "--------------------------------------------------------------"
284         @echo ">>> stage 2: build tools"
285         @echo "--------------------------------------------------------------"
286         cd ${.CURDIR}; ${TMAKE} build-tools
287 _cross-tools:
288         @echo
289         @echo "--------------------------------------------------------------"
290         @echo ">>> stage 3: cross tools"
291         @echo "--------------------------------------------------------------"
292         cd ${.CURDIR}; ${XMAKE} cross-tools
293 _includes:
294         @echo
295         @echo "--------------------------------------------------------------"
296         @echo ">>> stage 4: populating ${WORLDTMP}/usr/include"
297         @echo "--------------------------------------------------------------"
298         cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
299 _libraries:
300         @echo
301         @echo "--------------------------------------------------------------"
302         @echo ">>> stage 4: building libraries"
303         @echo "--------------------------------------------------------------"
304         cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
305 _depend:
306         @echo
307         @echo "--------------------------------------------------------------"
308         @echo ">>> stage 4: make dependencies"
309         @echo "--------------------------------------------------------------"
310         cd ${.CURDIR}; ${WMAKE} par-depend
311 everything:
312         @echo
313         @echo "--------------------------------------------------------------"
314         @echo ">>> stage 4: building everything.."
315         @echo "--------------------------------------------------------------"
316         cd ${.CURDIR}; ${WMAKE} all
317
318
319 WMAKE_TGTS=
320 .if !defined(SUBDIR_OVERRIDE)
321 WMAKE_TGTS+=    _worldtmp _bootstrap-tools
322 .endif
323 WMAKE_TGTS+=    _cleanobj _obj _build-tools
324 .if !defined(SUBDIR_OVERRIDE)
325 WMAKE_TGTS+=    _cross-tools
326 .endif
327 WMAKE_TGTS+=    _includes _libraries _depend everything
328
329 buildworld: ${WMAKE_TGTS}
330 .ORDER: ${WMAKE_TGTS}
331
332 #
333 # installcheck
334 #
335 # Checks to be sure system is ready for installworld
336 #
337 installcheck:
338 .if !defined(NO_SENDMAIL)
339         @if ! `grep -q '^smmsp:' /etc/passwd`; then \
340                 echo "ERROR: Required smmsp user is missing, see /usr/src/UPDATING."; \
341                 false; \
342         fi
343         @if ! `grep -q '^smmsp:' /etc/group`; then \
344                 echo "ERROR: Required smmsp group is missing, see /usr/src/UPDATING."; \
345                 false; \
346         fi
347 .endif
348
349 #
350 # distributeworld
351 #
352 # Distributes everything compiled by a `buildworld'.
353 #
354 # installworld
355 #
356 # Installs everything compiled by a 'buildworld'.
357 #
358 distributeworld installworld: installcheck
359         mkdir -p ${INSTALLTMP}
360         for prog in [ awk cat chflags chmod chown date echo egrep find grep \
361             ln make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
362             test true uname wc zic; do \
363                 cp `which $$prog` ${INSTALLTMP}; \
364         done
365         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
366         rm -rf ${INSTALLTMP}
367
368 #
369 # reinstall
370 #
371 # If you have a build server, you can NFS mount the source and obj directories
372 # and do a 'make reinstall' on the *client* to install new binaries from the
373 # most recent server build.
374 #
375 reinstall:
376         @echo "--------------------------------------------------------------"
377         @echo ">>> Making hierarchy"
378         @echo "--------------------------------------------------------------"
379         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
380         @echo
381         @echo "--------------------------------------------------------------"
382         @echo ">>> Installing everything.."
383         @echo "--------------------------------------------------------------"
384         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
385 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
386         @echo
387         @echo "--------------------------------------------------------------"
388         @echo ">>> Rebuilding man page indices"
389         @echo "--------------------------------------------------------------"
390         cd ${.CURDIR}/share/man; ${MAKE} makedb
391 .endif
392
393 redistribute:
394         @echo "--------------------------------------------------------------"
395         @echo ">>> Distributing everything.."
396         @echo "--------------------------------------------------------------"
397         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
398
399 #
400 # buildkernel and installkernel
401 #
402 # Which kernels to build and/or install is specified by setting
403 # KERNCONF. If not defined a GENERIC kernel is built/installed.
404 # Only the existing (depending TARGET) config files are used
405 # for building kernels and only the first of these is designated
406 # as the one being installed.
407 #
408 # Note that we have to use TARGET instead of TARGET_ARCH when
409 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
410 # be set to cross-build, we have to make sure TARGET is set
411 # properly.
412
413 .if !defined(KERNCONF) && defined(KERNEL)
414 KERNCONF=       ${KERNEL}
415 KERNWARN=       yes
416 .else
417 KERNCONF?=      GENERIC
418 .endif
419 INSTKERNNAME?=  kernel
420
421 KRNLSRCDIR=     ${.CURDIR}/sys
422 KRNLCONFDIR=    ${KRNLSRCDIR}/${TARGET}/conf
423 KRNLOBJDIR=     ${OBJTREE}${KRNLSRCDIR}
424 KERNCONFDIR?=   ${KRNLCONFDIR}
425
426 BUILDKERNELS=
427 INSTALLKERNEL=
428 .for _kernel in ${KERNCONF}
429 .if exists(${KERNCONFDIR}/${_kernel})
430 BUILDKERNELS+=  ${_kernel}
431 .if empty(INSTALLKERNEL)
432 INSTALLKERNEL= ${_kernel}
433 .endif
434 .endif
435 .endfor
436
437 #
438 # buildkernel
439 #
440 # Builds all kernels defined by BUILDKERNELS.
441 #
442 buildkernel:
443 .if empty(BUILDKERNELS)
444         @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
445         @false
446 .endif
447 .if defined(KERNWARN)
448         @echo "--------------------------------------------------------------"
449         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
450         @echo "--------------------------------------------------------------"
451         @sleep 3
452 .endif
453         @echo
454 .for _kernel in ${BUILDKERNELS}
455         @echo "--------------------------------------------------------------"
456         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
457         @echo "--------------------------------------------------------------"
458         @echo "===> ${_kernel}"
459         mkdir -p ${KRNLOBJDIR}
460 .if !defined(NO_KERNELCONFIG)
461         cd ${KRNLCONFDIR}; \
462                 PATH=${TMPPATH} \
463                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
464                         ${KERNCONFDIR}/${_kernel}
465 .endif
466 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
467         cd ${KRNLOBJDIR}/${_kernel}; \
468             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} -DNO_MODULES clean
469 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KRNLSRCDIR}/modules)
470         cd ${KRNLOBJDIR}/${_kernel}; \
471             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} cleandir
472 .endif
473 .endif
474         cd ${KRNLOBJDIR}/${_kernel}; \
475                 MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx/aicasm \
476                     ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/aicasm/Makefile
477 .if !defined(NO_KERNELDEPEND)
478         cd ${KRNLOBJDIR}/${_kernel}; \
479             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
480 .endif
481         cd ${KRNLOBJDIR}/${_kernel}; \
482             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
483         @echo "--------------------------------------------------------------"
484         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
485         @echo "--------------------------------------------------------------"
486 .endfor
487
488 #
489 # installkernel
490 #
491 # Install the kernel defined by INSTALLKERNEL
492 #
493 installkernel reinstallkernel:
494         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
495             ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
496
497 #
498 # update
499 #
500 # Update the source tree, by running sup and/or running cvs to update to the
501 # latest copy.
502 #
503 update:
504 .if defined(SUP_UPDATE)
505         @echo "--------------------------------------------------------------"
506         @echo ">>> Running ${SUP}"
507         @echo "--------------------------------------------------------------"
508 .if defined(SUPFILE)
509         @${SUP} ${SUPFLAGS} ${SUPFILE}
510 .endif
511 .if defined(SUPFILE1)
512         @${SUP} ${SUPFLAGS} ${SUPFILE1}
513 .endif
514 .if defined(SUPFILE2)
515         @${SUP} ${SUPFLAGS} ${SUPFILE2}
516 .endif
517 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
518         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
519 .endif
520 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
521         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
522 .endif
523 .endif
524 .if defined(CVS_UPDATE)
525         @echo "--------------------------------------------------------------"
526         @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
527         @echo "--------------------------------------------------------------"
528         cd ${.CURDIR}; ${CVS} -q update -A -P -d
529 .endif
530
531 #
532 # most
533 #
534 # Build most of the user binaries on the existing system libs and includes.
535 #
536 most:
537         @echo "--------------------------------------------------------------"
538         @echo ">>> Building programs only"
539         @echo "--------------------------------------------------------------"
540 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin
541         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ all
542 .endfor
543
544 #
545 # installmost
546 #
547 # Install the binaries built by the 'most' target.  This does not include
548 # libraries or include files.
549 #
550 installmost:
551         @echo "--------------------------------------------------------------"
552         @echo ">>> Installing programs only"
553         @echo "--------------------------------------------------------------"
554 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin
555         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ install
556 .endfor
557
558 #
559 # ------------------------------------------------------------------------
560 #
561 # From here onwards are utility targets used by the 'make world' and
562 # related targets.  If your 'world' breaks, you may like to try to fix
563 # the problem and manually run the following targets to attempt to
564 # complete the build.  Beware, this is *not* guaranteed to work, you
565 # need to have a pretty good grip on the current state of the system
566 # to attempt to manually finish it.  If in doubt, 'make world' again.
567 #
568
569 #
570 # bootstrap-tools: Build tools needed for compatibility
571 #
572 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
573 _strfile=       games/fortune/strfile
574 .endif
575 # This horrible kludge should be deleted in about 2 weeks, say July 9, 2002
576 _cxx_version!=  ${CXX} -v 2>&1 | awk '$$0 ~ /^gcc version/ {print $$3}'
577 _cc_version!=  ${CC} -v 2>&1 | awk '$$0 ~ /^gcc version/ {print $$3}'
578 .if ${CXX:T} != "c++" || \
579     (${_cxx_version} == ${_cc_version} && ${_cxx_version} != "3.1") || \
580     exists(/usr/lib/libstdc++.so.4)
581 _cxx_consumers= gnu/usr.bin/gperf gnu/usr.bin/groff
582 .endif
583
584 bootstrap-tools:
585 .for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \
586     usr.bin/makewhatis usr.bin/rpcgen usr.bin/uudecode \
587     usr.bin/xargs usr.bin/xinstall \
588     usr.sbin/config usr.sbin/kbdcontrol \
589     ${_cxx_consumers} gnu/usr.bin/texinfo
590         cd ${.CURDIR}/${_tool}; \
591                 ${MAKE} DIRPRFX=${_tool}/ obj; \
592                 ${MAKE} DIRPRFX=${_tool}/ depend; \
593                 ${MAKE} DIRPRFX=${_tool}/ all; \
594                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
595 .endfor
596
597 #
598 # build-tools: Build special purpose build tools
599 #
600 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
601 _games= games/adventure games/hack games/phantasia
602 .endif
603
604 .if exists(${.CURDIR}/share) && !defined(NOSHARE)
605 _share= share/syscons/scrnmaps
606 .endif
607
608 .if !defined(NO_FORTRAN)
609 _fortran= gnu/usr.bin/cc/f771
610 .endif
611
612 .if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
613     !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
614 _libroken4= kerberosIV/lib/libroken
615 .endif
616
617 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
618     !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
619 _libkrb5= kerberos5/lib/libroken kerberos5/lib/libvers \
620     kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
621 .endif
622
623 build-tools:
624 .for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \
625     ${_libroken4} ${_libkrb5} lib/libncurses ${_share} \
626     usr.bin/awk usr.bin/file usr.sbin/sysinstall
627         cd ${.CURDIR}/${_tool}; ${MAKE} DIRPRFX=${_tool}/ build-tools
628 .endfor
629
630 #
631 # cross-tools: Build cross-building tools
632 #
633 .if ${TARGET_ARCH} == "alpha" && ${MACHINE_ARCH} != "alpha"
634 _elf2exe=       usr.sbin/elf2exe
635 .endif
636
637 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
638 _btxld= usr.sbin/btxld
639 .endif
640
641 .if ${TARGET_ARCH} == "sparc64"
642 _elf2aout=      usr.sbin/elf2aout
643 .endif
644
645 _xlint= usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint
646
647 cross-tools:
648 .for _tool in ${_btxld} ${_elf2aout} ${_elf2exe} \
649     gnu/usr.bin/binutils usr.bin/objformat usr.sbin/crunch/crunchide \
650     gnu/usr.bin/cc ${_xlint}
651         cd ${.CURDIR}/${_tool}; \
652                 ${MAKE} DIRPRFX=${_tool}/ obj; \
653                 ${MAKE} DIRPRFX=${_tool}/ depend; \
654                 ${MAKE} DIRPRFX=${_tool}/ all; \
655                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
656 .endfor
657
658 #
659 # hierarchy - ensure that all the needed directories are present
660 #
661 hierarchy:
662         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
663
664 #
665 # libraries - build all libraries, and install them under ${DESTDIR}.
666 #
667 # The list of libraries with dependents (${_prebuild_libs}) and their
668 # interdependencies (__L) are built automatically by the
669 # ${.CURDIR}/tools/make_libdeps.sh script.
670 #
671 libraries:
672         cd ${.CURDIR}; \
673             ${MAKE} -f Makefile.inc1 _startup_libs; \
674             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
675             ${MAKE} -f Makefile.inc1 _generic_libs;
676
677 # These dependencies are not automatically generated:
678 #
679 # gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
680 # shared libraries for ELF.
681 #
682 _startup_libs=  gnu/lib/csu gnu/lib/libgcc
683 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT})
684 _startup_libs+= lib/csu/${MACHINE_ARCH}-${OBJFORMAT}
685 .else
686 _startup_libs+= lib/csu/${MACHINE_ARCH}
687 .endif
688
689 _prebuild_libs=
690
691 _generic_libs=  gnu/lib
692
693 .if !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
694 _prebuild_libs+=        kerberos5/lib/libasn1
695 _prebuild_libs+=        kerberos5/lib/libgssapi
696 _prebuild_libs+=        kerberos5/lib/libkrb5
697 _prebuild_libs+=        kerberos5/lib/libroken
698 _generic_libs+= kerberos5/lib
699 .endif
700
701 .if !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
702 _prebuild_libs+=        kerberosIV/lib/libkrb
703 kerberosIV/lib/libkrb__L: lib/libcrypt__L
704 _generic_libs+= kerberosIV/lib
705 .endif
706
707 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libkvm lib/libmd \
708                 lib/libncurses lib/libopie lib/libradius lib/librpcsvc \
709                 lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \
710                 lib/libz lib/msun
711
712 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
713 lib/libypclnt__L: lib/librpcsvc__L
714
715 _generic_libs+= lib
716
717 .if !defined(NOCRYPT) && !defined(NOSECURE)
718 .if !defined(NO_OPENSSL)
719 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
720 .if !defined(NO_OPENSSH)
721 _prebuild_libs+=        secure/lib/libssh
722 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
723 .endif
724 .endif
725 _generic_libs+= secure/lib
726 .endif
727
728 _generic_libs+= usr.bin/lex/lib
729
730 .if ${MACHINE_ARCH} == "i386"
731 _generic_libs+= usr.sbin/pcvt/keycap
732 .endif
733
734 .for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
735 ${_lib}__L: .PHONY
736 .if exists(${.CURDIR}/${_lib})
737         cd ${.CURDIR}/${_lib}; \
738                 ${MAKE} DIRPRFX=${_lib}/ depend; \
739                 ${MAKE} DIRPRFX=${_lib}/ all; \
740                 ${MAKE} DIRPRFX=${_lib}/ install
741 .endif
742 .endfor
743
744 _startup_libs: ${_startup_libs:S/$/__L/}
745 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
746 _generic_libs: ${_generic_libs:S/$/__L/}
747
748 .for __target in clean cleandepend cleandir depend includes obj
749 .for entry in ${SUBDIR}
750 ${entry}.${__target}__D: .PHONY
751         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
752                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
753                 edir=${entry}.${MACHINE_ARCH}; \
754                 cd ${.CURDIR}/$${edir}; \
755         else \
756                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
757                 edir=${entry}; \
758                 cd ${.CURDIR}/$${edir}; \
759         fi; \
760         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
761 .endfor
762 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
763 .endfor
764
765 .include <bsd.subdir.mk>