]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
This commit was generated by cvs2svn to compensate for changes in r142129,
[FreeBSD/FreeBSD.git] / Makefile.inc1
1 #
2 # $FreeBSD$
3 #
4 # Make command line options:
5 #       -DNO_DYNAMICROOT do not link /bin and /sbin dynamically
6 #       -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
7 #       -DNO_RESCUE do not build rescue binaries
8 #       -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
9 #       -DNO_CLEAN do not clean at all
10 #       -DNO_CRYPT will prevent building of crypt versions
11 #       -DNO_MAN do not build the manual pages
12 #       -DNO_PROFILE do not build profiled libraries
13 #       -DNO_GAMES do not go into games subdir
14 #       -DNO_SHARE do not go into share subdir
15 #       -DNO_INFO do not make or install info files
16 #       -DNO_LIBC_R do not build libc_r.
17 #       -DNO_FORTRAN do not build g77 and related libraries.
18 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
19 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
20 #       -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
21 #       -DNO_PORTSUPDATE do not update ports in ${MAKE} update
22 #       -DNO_DOCUPDATE do not update doc in ${MAKE} update
23 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
24 #       TARGET_ARCH="arch" to crossbuild world to a different arch
25
26 #
27 # The intended user-driven targets are:
28 # buildworld  - rebuild *everything*, including glue to help do upgrades
29 # installworld- install everything built by "buildworld"
30 # update      - convenient way to update your source tree (eg: cvsup/cvs)
31 #
32 # Standard targets (not defined here) are documented in the makefiles in
33 # /usr/share/mk.  These include:
34 #               obj depend all install clean cleandepend cleanobj
35
36 # We must do share/info early so that installation of info `dir'
37 # entries works correctly.  Do it first since it is less likely to
38 # grow dependencies on include and lib than vice versa.
39 #
40 # We must do lib and libexec before bin, because if installworld
41 # installs a new /bin/sh, the 'make' command will *immediately*
42 # use that new version.  And the new (dynamically-linked) /bin/sh
43 # will expect to find appropriate libraries in /lib and /libexec.
44 #
45 # We must do etc last for install/distribute to work.
46 #
47 SUBDIR= share/info include lib libexec bin
48 .if !defined(NO_GAMES)
49 SUBDIR+=games
50 .endif
51 SUBDIR+=gnu
52 .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL)
53 SUBDIR+=kerberos5
54 .endif
55 .if !defined(NO_RESCUE)
56 SUBDIR+=rescue
57 .endif
58 SUBDIR+=sbin
59 .if !defined(NO_CRYPT)
60 SUBDIR+=secure
61 .endif
62 .if !defined(NO_SHARE)
63 SUBDIR+=share
64 .endif
65 SUBDIR+=sys usr.bin usr.sbin etc
66
67 # These are last, since it is nice to at least get the base system
68 # rebuilt before you do them.
69 .for _DIR in ${LOCAL_DIRS}
70 .if exists(${.CURDIR}/${_DIR}/Makefile)
71 SUBDIR+= ${_DIR}
72 .endif
73 .endfor
74
75 .if defined(SUBDIR_OVERRIDE)
76 SUBDIR=         ${SUBDIR_OVERRIDE}
77 .endif
78
79 .if defined(NO_CLEANDIR)
80 CLEANDIR=       clean cleandepend
81 .else
82 CLEANDIR=       cleandir
83 .endif
84
85 CVS?=           cvs
86 CVSFLAGS?=      -A -P -d -I!
87 SUP?=           /usr/local/bin/cvsup
88 SUPFLAGS?=      -g -L 2 -P -
89 .if defined(SUPHOST)
90 SUPFLAGS+=      -h ${SUPHOST}
91 .endif
92
93 MAKEOBJDIRPREFIX?=      /usr/obj
94 .if !defined(OSRELDATE)
95 .if exists(/usr/include/osreldate.h)
96 OSRELDATE!=     awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
97                 /usr/include/osreldate.h
98 .else
99 OSRELDATE=      0
100 .endif
101 .endif
102 TARGET_ARCH?=   ${MACHINE_ARCH}
103 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
104 TARGET?=        ${MACHINE}
105 TARGET_CPUTYPE?=${CPUTYPE}
106 .else
107 TARGET?=        ${TARGET_ARCH}
108 TARGET_CPUTYPE?=
109 .endif
110 .if !empty(TARGET_CPUTYPE)
111 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
112 .else
113 _TARGET_CPUTYPE=dummy
114 .endif
115 _CPUTYPE!=      MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
116                 -f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
117 .if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
118 .error CPUTYPE global should be set with ?=.
119 .endif
120 .if make(buildworld)
121 BUILD_ARCH!=    sysctl -n hw.machine_arch
122 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
123 .error To cross-build, set TARGET_ARCH.
124 .endif
125 .endif
126 .if ${MACHINE} == ${TARGET}
127 OBJTREE=        ${MAKEOBJDIRPREFIX}
128 .else
129 OBJTREE=        ${MAKEOBJDIRPREFIX}/${TARGET}
130 .endif
131 WORLDTMP=       ${OBJTREE}${.CURDIR}/${MACHINE_ARCH}
132 # /usr/games added for fortune which depend on strfile
133 BPATH=          ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
134 XPATH=          ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
135 STRICTTMPPATH=  ${BPATH}:${XPATH}
136 TMPPATH=        ${STRICTTMPPATH}:${PATH}
137
138 INSTALLTMP!=    /usr/bin/mktemp -d -u -t install
139
140 #
141 # Building a world goes through the following stages
142 #
143 # 1. legacy stage [BMAKE]
144 #       This stage is responsible for creating compatibility
145 #       shims that are needed by the bootstrap-tools,
146 #       build-tools and cross-tools stages.
147 # 1. bootstrap-tools stage [BMAKE]
148 #       This stage is responsible for creating programs that
149 #       are needed for backward compatibility reasons. They
150 #       are not built as cross-tools.
151 # 2. build-tools stage [TMAKE]
152 #       This stage is responsible for creating the object
153 #       tree and building any tools that are needed during
154 #       the build process.
155 # 3. cross-tools stage [XMAKE]
156 #       This stage is responsible for creating any tools that
157 #       are needed for cross-builds. A cross-compiler is one
158 #       of them.
159 # 4. world stage [WMAKE]
160 #       This stage actually builds the world.
161 # 5. install stage (optional) [IMAKE]
162 #       This stage installs a previously built world.
163 #
164
165 BOOTSTRAPPING?= 0
166
167 # Common environment for world related stages
168 CROSSENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
169                 MACHINE_ARCH=${TARGET_ARCH} \
170                 MACHINE=${TARGET} \
171                 CPUTYPE=${TARGET_CPUTYPE} \
172                 GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
173                 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
174                 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
175
176 # bootstrap-tools stage
177 BMAKEENV=       INSTALL="sh ${.CURDIR}/tools/install.sh" \
178                 PATH=${BPATH}:${PATH} \
179                 WORLDTMP=${WORLDTMP} \
180                 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
181 BMAKE=          MAKEOBJDIRPREFIX=${WORLDTMP} \
182                 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
183                 DESTDIR= \
184                 BOOTSTRAPPING=${OSRELDATE} \
185                 -DNO_HTML -DNO_INFO -DNO_LINT -DNO_MAN -DNO_PIC -DNO_PROFILE \
186                 -DNO_SHARED -DNO_CPU_CFLAGS -DNO_WARNS
187
188 # build-tools stage
189 TMAKE=          MAKEOBJDIRPREFIX=${OBJTREE} \
190                 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
191                 DESTDIR= \
192                 BOOTSTRAPPING=${OSRELDATE} -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS
193
194 # cross-tools stage
195 XMAKE=          TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
196
197 # world stage
198 WMAKEENV=       ${CROSSENV} \
199                 _SHLIBDIRPREFIX=${WORLDTMP} \
200                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
201                 PATH=${TMPPATH}
202 WMAKE=          ${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP}
203
204 .if ${MACHINE_ARCH} == "amd64"
205 # 32 bit world
206 LIB32TMP=       ${OBJTREE}${.CURDIR}/lib32
207
208 LIB32PREFLAGS=  -m32 -march=athlon-xp -msse2 -mfancy-math-387 -DCOMPAT_32BIT
209 LIB32POSTFLAGS= -I${LIB32TMP}/usr/include \
210                 -L${LIB32TMP}/usr/lib32 \
211                 -B${LIB32TMP}/usr/lib32
212 LIB32CC=        ${LIB32PREFLAGS} \
213                 ${LIB32POSTFLAGS}
214 LIB32CXX=       ${LIB32PREFLAGS} -I${LIB32TMP}/usr/include/c++/3.4 \
215                 ${LIB32POSTFLAGS}
216 LIB32OBJC=      ${LIB32PREFLAGS} -I${LIB32TMP}/usr/include/objc \
217                 ${LIB32POSTFLAGS}
218
219 # Yes, the flags are redundant.
220 LIB32MAKEENV=   MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \
221                 _SHLIBDIRPREFIX=${LIB32TMP} \
222                 MACHINE_ARCH=i386 \
223                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
224                 PATH=${TMPPATH} \
225                 CC="cc ${LIB32CC}" \
226                 CXX="c++ ${LIB32CXX}" \
227                 OBJC="cc ${LIB32OBJC}" \
228                 LD="ld -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
229                 AS="as --32" \
230                 LIBDIR=/usr/lib32 \
231                 SHLIBDIR=/usr/lib32
232
233 LIB32MAKE=      ${LIB32MAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
234                 -DNO_BIND -DNO_MAN -DNO_INFO -DNO_HTML \
235                 CC="cc ${LIB32CC}" \
236                 CXX="c++ ${LIB32CXX}" \
237                 OBJC="cc ${LIB32OBJC}" \
238                 LD="ld -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
239                 AS="as --32" \
240                 LIBDIR=/usr/lib32 \
241                 SHLIBDIR=/usr/lib32
242 .endif
243
244 # install stage
245 .if empty(.MAKEFLAGS:M-n)
246 IMAKEENV=       ${CROSSENV} \
247                 PATH=${STRICTTMPPATH}:${INSTALLTMP}
248 .else
249 IMAKEENV=       ${CROSSENV} \
250                 PATH=${TMPPATH}:${INSTALLTMP}
251 .endif
252 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1
253
254 # kernel stage
255 KMAKEENV=       ${WMAKEENV}
256
257 #
258 # buildworld
259 #
260 # Attempt to rebuild the entire system, with reasonable chance of
261 # success, regardless of how old your existing system is.
262 #
263 _worldtmp:
264 .if ${.CURDIR:C/[^,]//g} != ""
265 #       The m4 build of sendmail files doesn't like it if ',' is used
266 #       anywhere in the path of it's files.
267         @echo
268         @echo "*** Error: path to source tree contains a comma ','"
269         @echo
270         false
271 .endif
272         @echo
273         @echo "--------------------------------------------------------------"
274         @echo ">>> Rebuilding the temporary build tree"
275         @echo "--------------------------------------------------------------"
276 .if !defined(NO_CLEAN)
277         rm -rf ${WORLDTMP}
278 .else
279         rm -rf ${WORLDTMP}/legacy/usr/include
280         # XXX - These two can depend on any header file.
281         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
282         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
283 .endif
284 .for _dir in \
285     usr/bin usr/games usr/include/c++/3.4 usr/include/sys usr/lib \
286     usr/libexec usr/sbin usr/share/dict \
287     usr/share/groff_font/devX100 \
288     usr/share/groff_font/devX100-12 \
289     usr/share/groff_font/devX75 \
290     usr/share/groff_font/devX75-12 \
291     usr/share/groff_font/devascii \
292     usr/share/groff_font/devcp1047 \
293     usr/share/groff_font/devdvi \
294     usr/share/groff_font/devhtml \
295     usr/share/groff_font/devkoi8-r \
296     usr/share/groff_font/devlatin1 \
297     usr/share/groff_font/devlbp \
298     usr/share/groff_font/devlj4 \
299     usr/share/groff_font/devps \
300     usr/share/groff_font/devutf8 \
301     usr/share/tmac/mdoc usr/share/tmac/mm
302         mkdir -p ${WORLDTMP}/legacy/${_dir}
303 .endfor
304 .for _dir in \
305     lib usr/bin usr/include usr/lib/compat/aout usr/libdata/ldscripts \
306     usr/libexec usr/sbin usr/share/misc \
307     usr/share/snmp/defs usr/share/snmp/mibs
308         mkdir -p ${WORLDTMP}/${_dir}
309 .endfor
310         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
311             -p ${WORLDTMP}/usr/include >/dev/null
312         ln -sf ${.CURDIR}/sys ${WORLDTMP}
313 .if defined(WITH_BIND_LIBS) && !defined(NO_BIND)
314         mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
315             -p ${WORLDTMP}/usr/include >/dev/null
316 .endif
317 _legacy:
318         @echo
319         @echo "--------------------------------------------------------------"
320         @echo ">>> stage 1.1: legacy release compatibility shims"
321         @echo "--------------------------------------------------------------"
322         ${_+_}cd ${.CURDIR}; ${BMAKE} legacy
323 _bootstrap-tools:
324         @echo
325         @echo "--------------------------------------------------------------"
326         @echo ">>> stage 1.2: bootstrap tools"
327         @echo "--------------------------------------------------------------"
328         ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
329 _cleanobj:
330 .if !defined(NO_CLEAN)
331         @echo
332         @echo "--------------------------------------------------------------"
333         @echo ">>> stage 2.1: cleaning up the object tree"
334         @echo "--------------------------------------------------------------"
335         ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
336 .endif
337 _obj:
338         @echo
339         @echo "--------------------------------------------------------------"
340         @echo ">>> stage 2.2: rebuilding the object tree"
341         @echo "--------------------------------------------------------------"
342         ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
343 _build-tools:
344         @echo
345         @echo "--------------------------------------------------------------"
346         @echo ">>> stage 2.3: build tools"
347         @echo "--------------------------------------------------------------"
348         ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
349 _cross-tools:
350         @echo
351         @echo "--------------------------------------------------------------"
352         @echo ">>> stage 3: cross tools"
353         @echo "--------------------------------------------------------------"
354         ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
355 _includes:
356         @echo
357         @echo "--------------------------------------------------------------"
358         @echo ">>> stage 4.1: building includes"
359         @echo "--------------------------------------------------------------"
360         ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
361 _libraries:
362         @echo
363         @echo "--------------------------------------------------------------"
364         @echo ">>> stage 4.2: building libraries"
365         @echo "--------------------------------------------------------------"
366         ${_+_}cd ${.CURDIR}; \
367             ${WMAKE} -DNO_FSCHG -DNO_HTML -DNO_INFO -DNO_LINT -DNO_MAN -DNO_PROFILE \
368             libraries
369 _depend:
370         @echo
371         @echo "--------------------------------------------------------------"
372         @echo ">>> stage 4.3: make dependencies"
373         @echo "--------------------------------------------------------------"
374         ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
375 everything:
376         @echo
377         @echo "--------------------------------------------------------------"
378         @echo ">>> stage 4.4: building everything"
379         @echo "--------------------------------------------------------------"
380         ${_+_}cd ${.CURDIR}; ${WMAKE} par-all
381 .if ${MACHINE_ARCH} == "amd64"
382 build32:
383         @echo
384         @echo "--------------------------------------------------------------"
385         @echo ">>> stage 5.1: building 32 bit shim libraries"
386         @echo "--------------------------------------------------------------"
387 .for _dir in \
388     lib lib32 usr/bin usr/include usr/lib32 usr/libdata/ldscripts \
389     usr/libexec usr/sbin usr/share/misc \
390     usr/share/snmp/defs usr/share/snmp/mibs
391         mkdir -p ${LIB32TMP}/${_dir}
392 .endfor
393         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
394             -p ${LIB32TMP}/usr/include >/dev/null
395         ln -sf ${.CURDIR}/sys ${WORLDTMP}
396 .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL)
397 .for _t in obj depend all
398         cd ${.CURDIR}/kerberos5/tools; \
399             MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} ${_t}
400 .endfor
401 .endif
402 .for _t in obj includes
403         cd ${.CURDIR}/include; \
404             ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
405         cd ${.CURDIR}/lib; \
406             ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
407         cd ${.CURDIR}/gnu/lib; \
408             ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
409 .if !defined(NO_CRYPT)
410         cd ${.CURDIR}/secure/lib; \
411             ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
412 .endif
413 .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL)
414         cd ${.CURDIR}/kerberos5/lib; \
415             ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
416 .endif
417 .endfor
418 .for _dir in usr.sbin/pcvt/keycap usr.bin/lex/lib
419         cd ${.CURDIR}/${_dir}; \
420             ${LIB32MAKE} DESTDIR=${LIB32TMP} obj
421 .endfor
422 .for _dir in lib/libncurses lib/libmagic
423         cd ${.CURDIR}/${_dir}; \
424             MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} build-tools
425 .endfor
426         cd ${.CURDIR}; \
427             ${LIB32MAKE} -f Makefile.inc1 DESTDIR=${LIB32TMP} libraries 
428 .for _t in obj depend all
429         cd ${.CURDIR}/libexec/rtld-elf; \
430             PROG=ld-elf32.so.1 ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
431 .endfor
432
433 install32:
434         mkdir -p ${DESTDIR}/usr/lib32   # XXX add to mtree
435         cd ${.CURDIR}/lib; ${LIB32MAKE} install
436         cd ${.CURDIR}/gnu/lib; ${LIB32MAKE} install
437 .if !defined(NO_CRYPT)
438         cd ${.CURDIR}/secure/lib; ${LIB32MAKE} install
439 .endif
440         cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32MAKE} install
441 .endif
442
443
444 WMAKE_TGTS=
445 .if !defined(SUBDIR_OVERRIDE)
446 WMAKE_TGTS+=    _worldtmp _legacy _bootstrap-tools
447 .endif
448 WMAKE_TGTS+=    _cleanobj _obj _build-tools
449 .if !defined(SUBDIR_OVERRIDE)
450 WMAKE_TGTS+=    _cross-tools
451 .endif
452 WMAKE_TGTS+=    _includes _libraries _depend everything
453 .if ${MACHINE_ARCH} == "amd64" && defined(WITH_LIB32)
454 WMAKE_TGTS+=    build32
455 .endif
456
457 buildworld: ${WMAKE_TGTS}
458 .ORDER: ${WMAKE_TGTS}
459
460 TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything}
461 toolchain: ${TOOLCHAIN_TGTS}
462 kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
463
464 #
465 # Use this to add checks to installworld/installkernel targets.
466 #
467 SPECIAL_INSTALLCHECKS=
468
469 #
470 # installcheck
471 #
472 # Checks to be sure system is ready for installworld
473 #
474 CHECK_UIDS=
475 CHECK_GIDS=
476 .if !defined(NO_SENDMAIL)
477 CHECK_UIDS+=    smmsp
478 CHECK_GIDS+=    smmsp
479 .endif
480 .if !defined(NO_PF)
481 CHECK_UIDS+=    proxy
482 CHECK_GIDS+=    proxy authpf
483 .endif
484 installcheck: ${SPECIAL_INSTALLCHECKS}
485 .for uid in ${CHECK_UIDS}
486         @if ! `id -u ${uid} >/dev/null 2>&1`; then \
487                 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
488                 false; \
489         fi
490 .endfor
491 .for gid in ${CHECK_GIDS}
492         @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
493                 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
494                 false; \
495         fi
496 .endfor
497
498 #
499 # distributeworld
500 #
501 # Distributes everything compiled by a `buildworld'.
502 #
503 # installworld
504 #
505 # Installs everything compiled by a 'buildworld'.
506 #
507 distributeworld installworld: installcheck
508         mkdir -p ${INSTALLTMP}
509         for prog in [ awk cap_mkdb cat chflags chmod chown \
510             date echo egrep find grep \
511             ln make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
512             test true uname wc zic; do \
513                 cp `which $$prog` ${INSTALLTMP}; \
514         done
515         ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
516         rm -rf ${INSTALLTMP}
517
518 #
519 # reinstall
520 #
521 # If you have a build server, you can NFS mount the source and obj directories
522 # and do a 'make reinstall' on the *client* to install new binaries from the
523 # most recent server build.
524 #
525 reinstall: ${SPECIAL_INSTALLCHECKS}
526         @echo "--------------------------------------------------------------"
527         @echo ">>> Making hierarchy"
528         @echo "--------------------------------------------------------------"
529         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
530         @echo
531         @echo "--------------------------------------------------------------"
532         @echo ">>> Installing everything"
533         @echo "--------------------------------------------------------------"
534         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
535 .if ${MACHINE_ARCH} == "amd64" && defined(WITH_LIB32)
536         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
537 .endif
538
539 redistribute:
540         @echo "--------------------------------------------------------------"
541         @echo ">>> Distributing everything"
542         @echo "--------------------------------------------------------------"
543         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
544
545 #
546 # buildkernel and installkernel
547 #
548 # Which kernels to build and/or install is specified by setting
549 # KERNCONF. If not defined a GENERIC kernel is built/installed.
550 # Only the existing (depending TARGET) config files are used
551 # for building kernels and only the first of these is designated
552 # as the one being installed.
553 #
554 # Note that we have to use TARGET instead of TARGET_ARCH when
555 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
556 # be set to cross-build, we have to make sure TARGET is set
557 # properly.
558
559 .if !defined(KERNCONF) && defined(KERNEL)
560 KERNCONF=       ${KERNEL}
561 KERNWARN=
562 .else
563 KERNCONF?=      GENERIC
564 .endif
565 INSTKERNNAME?=  kernel
566
567 KERNSRCDIR?=    ${.CURDIR}/sys
568 KRNLCONFDIR=    ${KERNSRCDIR}/${TARGET}/conf
569 KRNLOBJDIR=     ${OBJTREE}${KERNSRCDIR}
570 KERNCONFDIR?=   ${KRNLCONFDIR}
571
572 BUILDKERNELS=
573 INSTALLKERNEL=
574 .for _kernel in ${KERNCONF}
575 .if exists(${KERNCONFDIR}/${_kernel})
576 BUILDKERNELS+=  ${_kernel}
577 .if empty(INSTALLKERNEL)
578 INSTALLKERNEL= ${_kernel}
579 .endif
580 .endif
581 .endfor
582
583 #
584 # buildkernel
585 #
586 # Builds all kernels defined by BUILDKERNELS.
587 #
588 buildkernel:
589 .if empty(BUILDKERNELS)
590         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF}).";
591         false
592 .endif
593 .if defined(KERNWARN)
594         @echo "--------------------------------------------------------------"
595         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
596         @echo "--------------------------------------------------------------"
597         @sleep 3
598 .endif
599         @echo
600 .for _kernel in ${BUILDKERNELS}
601         @echo "--------------------------------------------------------------"
602         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
603         @echo "--------------------------------------------------------------"
604         @echo "===> ${_kernel}"
605         mkdir -p ${KRNLOBJDIR}
606 .if !defined(NO_KERNELCONFIG)
607         @echo
608         @echo "--------------------------------------------------------------"
609         @echo ">>> stage 1: configuring the kernel"
610         @echo "--------------------------------------------------------------"
611         cd ${KRNLCONFDIR}; \
612                 PATH=${TMPPATH} \
613                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
614                         ${KERNCONFDIR}/${_kernel}
615 .endif
616 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
617         @echo
618         @echo "--------------------------------------------------------------"
619         @echo ">>> stage 2.1: cleaning up the object tree"
620         @echo "--------------------------------------------------------------"
621         cd ${KRNLOBJDIR}/${_kernel}; \
622             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} ${CLEANDIR}
623 .endif
624         @echo
625         @echo "--------------------------------------------------------------"
626         @echo ">>> stage 2.2: rebuilding the object tree"
627         @echo "--------------------------------------------------------------"
628         cd ${KRNLOBJDIR}/${_kernel}; \
629             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} obj
630         @echo
631         @echo "--------------------------------------------------------------"
632         @echo ">>> stage 2.3: build tools"
633         @echo "--------------------------------------------------------------"
634         cd ${KRNLOBJDIR}/${_kernel}; \
635             MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
636             ${MAKE} -DNO_CPU_CFLAGS -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
637 # XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
638 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
639 .for target in obj depend all
640         cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
641             MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
642             ${MAKE} -DNO_CPU_CFLAGS ${target}
643 .endfor
644 .endif
645 .if !defined(NO_KERNELDEPEND)
646         @echo
647         @echo "--------------------------------------------------------------"
648         @echo ">>> stage 3.1: making dependencies"
649         @echo "--------------------------------------------------------------"
650         cd ${KRNLOBJDIR}/${_kernel}; \
651             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend -DNO_MODULES_OBJ
652 .endif
653         @echo
654         @echo "--------------------------------------------------------------"
655         @echo ">>> stage 3.2: building everything"
656         @echo "--------------------------------------------------------------"
657         cd ${KRNLOBJDIR}/${_kernel}; \
658             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all -DNO_MODULES_OBJ
659         @echo "--------------------------------------------------------------"
660         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
661         @echo "--------------------------------------------------------------"
662 .endfor
663
664 #
665 # installkernel, etc.
666 #
667 # Install the kernel defined by INSTALLKERNEL
668 #
669 installkernel installkernel.debug \
670 reinstallkernel reinstallkernel.debug: ${SPECIAL_INSTALLCHECKS}
671 .if empty(INSTALLKERNEL)
672         @echo "ERROR: No kernel \"${KERNCONF}\" to install."
673         false
674 .endif
675         @echo "--------------------------------------------------------------"
676         @echo ">>> Making hierarchy"
677         @echo "--------------------------------------------------------------"
678         cd ${.CURDIR}; \
679             ${CROSSENV} PATH=${TMPPATH} ${MAKE} -f Makefile.inc1 hierarchy
680         @echo
681         @echo "--------------------------------------------------------------"
682         @echo ">>> Installing kernel"
683         @echo "--------------------------------------------------------------"
684         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
685             ${CROSSENV} PATH=${TMPPATH} \
686             ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
687
688 #
689 # update
690 #
691 # Update the source tree, by running cvsup and/or running cvs to update to the
692 # latest copy.
693 #
694 update:
695 .if defined(SUP_UPDATE)
696         @echo "--------------------------------------------------------------"
697         @echo ">>> Running ${SUP}"
698         @echo "--------------------------------------------------------------"
699 .if defined(SUPFILE)
700         @${SUP} ${SUPFLAGS} ${SUPFILE}
701 .endif
702 .if defined(SUPFILE1)
703         @${SUP} ${SUPFLAGS} ${SUPFILE1}
704 .endif
705 .if defined(SUPFILE2)
706         @${SUP} ${SUPFLAGS} ${SUPFILE2}
707 .endif
708 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
709         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
710 .endif
711 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
712         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
713 .endif
714 .endif
715 .if defined(CVS_UPDATE)
716         @echo "--------------------------------------------------------------"
717         @echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
718         @echo "--------------------------------------------------------------"
719         cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS}
720 .endif
721
722 #
723 # ------------------------------------------------------------------------
724 #
725 # From here onwards are utility targets used by the 'make world' and
726 # related targets.  If your 'world' breaks, you may like to try to fix
727 # the problem and manually run the following targets to attempt to
728 # complete the build.  Beware, this is *not* guaranteed to work, you
729 # need to have a pretty good grip on the current state of the system
730 # to attempt to manually finish it.  If in doubt, 'make world' again.
731 #
732
733 #
734 # legacy: Build compatibility shims for the next three targets
735 #
736 legacy:
737 .for _tool in tools/build
738         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
739             cd ${.CURDIR}/${_tool}; \
740             ${MAKE} DIRPRFX=${_tool}/ obj; \
741             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
742             ${MAKE} DIRPRFX=${_tool}/ depend; \
743             ${MAKE} DIRPRFX=${_tool}/ all; \
744             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
745 .endfor
746
747 #
748 # bootstrap-tools: Build tools needed for compatibility
749 #
750 .if !defined(NO_GAMES)
751 _strfile=       games/fortune/strfile
752 .endif
753
754 .if !defined(NO_CXX)
755 _gperf= gnu/usr.bin/gperf
756 .if ${BOOTSTRAPPING} < 500113
757 _groff=         gnu/usr.bin/groff
758 .else
759 _groff=         gnu/usr.bin/groff/tmac
760 .endif
761 .endif
762
763 .if ${BOOTSTRAPPING} < 502102
764 _lex=           usr.bin/lex
765 .endif
766
767 .if ${BOOTSTRAPPING} < 450005 || \
768     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500034
769 _uudecode=      usr.bin/uudecode
770 .endif
771
772 .if ${BOOTSTRAPPING} < 430002 || \
773     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500019
774 _xargs=         usr.bin/xargs
775 .endif
776
777 .if ${BOOTSTRAPPING} < 430002 || \
778     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500018
779 _yacc=          usr.bin/yacc
780 .endif
781
782 .if !defined(NO_RESCUE) && \
783     ${BOOTSTRAPPING} < 600008
784 _crunchgen=     usr.sbin/crunch/crunchgen
785 .endif
786
787 .if ${BOOTSTRAPPING} < 502128
788 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
789 .endif
790
791 .if ${BOOTSTRAPPING} < 500019
792 _kbdcontrol=    usr.sbin/kbdcontrol
793 .endif
794
795 bootstrap-tools:
796 .for _tool in \
797     ${_strfile} \
798     ${_gperf} \
799     ${_groff} \
800     gnu/usr.bin/texinfo \
801     usr.bin/colldef \
802     ${_lex} \
803     usr.bin/lorder \
804     usr.bin/makewhatis \
805     usr.bin/rpcgen \
806     ${_uudecode} \
807     ${_xargs} \
808     usr.bin/xinstall \
809     ${_yacc} \
810     usr.sbin/config \
811     ${_crunchgen} \
812     ${_gensnmptree} \
813     ${_kbdcontrol}
814         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
815                 cd ${.CURDIR}/${_tool}; \
816                 ${MAKE} DIRPRFX=${_tool}/ obj; \
817                 ${MAKE} DIRPRFX=${_tool}/ depend; \
818                 ${MAKE} DIRPRFX=${_tool}/ all; \
819                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
820 .endfor
821
822 #
823 # build-tools: Build special purpose build tools
824 #
825 .if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
826 _aicasm= sys/modules/aic7xxx/aicasm
827 .endif
828
829 .if !defined(NO_SHARE)
830 _share= share/syscons/scrnmaps
831 .endif
832
833 .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL)
834 _kerberos5_tools= kerberos5/tools
835 .endif
836
837 .if !defined(NO_RESCUE)
838 _rescue= rescue/rescue
839 .endif
840
841 build-tools:
842 .for _tool in \
843     bin/csh \
844     bin/sh \
845     ${_rescue} \
846     lib/libncurses \
847     ${_share} \
848     ${_aicasm} \
849     usr.bin/awk \
850     lib/libmagic \
851     usr.sbin/sysinstall
852         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
853                 cd ${.CURDIR}/${_tool}; \
854                 ${MAKE} DIRPRFX=${_tool}/ obj; \
855                 ${MAKE} DIRPRFX=${_tool}/ build-tools
856 .endfor
857 .for _tool in \
858     gnu/usr.bin/cc/cc_tools \
859     ${_kerberos5_tools}
860         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
861                 cd ${.CURDIR}/${_tool}; \
862                 ${MAKE} DIRPRFX=${_tool}/ obj; \
863                 ${MAKE} DIRPRFX=${_tool}/ depend; \
864                 ${MAKE} DIRPRFX=${_tool}/ all
865 .endfor
866
867 #
868 # cross-tools: Build cross-building tools
869 #
870 .if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
871     ${BOOTSTRAPPING} < 500037
872 _elf2aout=      usr.bin/elf2aout
873 .endif
874
875 .if (${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386") && \
876     ${TARGET_ARCH} != ${MACHINE_ARCH}
877 _btxld=         usr.sbin/btxld
878 .endif
879
880 .if (!defined(NO_RESCUE) || \
881     defined(RELEASEDIR)) && \
882     (${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 501101)
883 _crunchide=     usr.sbin/crunch/crunchide
884 .endif
885
886 .if ${TARGET_ARCH} == "alpha" && ${TARGET_ARCH} != ${MACHINE_ARCH}
887 _elf2exe=       usr.sbin/elf2exe
888 .endif
889
890 .if ${TARGET_ARCH} == "i386" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
891     defined(RELEASEDIR)
892 _kgzip=         usr.sbin/kgzip
893 .endif
894
895 cross-tools:
896 .for _tool in \
897     gnu/usr.bin/binutils \
898     gnu/usr.bin/cc \
899     ${_elf2aout} \
900     usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
901     ${_btxld} \
902     ${_crunchide} \
903     ${_elf2exe} \
904     ${_kgzip}
905         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
906                 cd ${.CURDIR}/${_tool}; \
907                 ${MAKE} DIRPRFX=${_tool}/ obj; \
908                 ${MAKE} DIRPRFX=${_tool}/ depend; \
909                 ${MAKE} DIRPRFX=${_tool}/ all; \
910                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
911 .endfor
912
913 #
914 # hierarchy - ensure that all the needed directories are present
915 #
916 hierarchy:
917         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
918
919 #
920 # libraries - build all libraries, and install them under ${DESTDIR}.
921 #
922 # The list of libraries with dependents (${_prebuild_libs}) and their
923 # interdependencies (__L) are built automatically by the
924 # ${.CURDIR}/tools/make_libdeps.sh script.
925 #
926 libraries:
927         cd ${.CURDIR}; \
928             ${MAKE} -f Makefile.inc1 _startup_libs; \
929             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
930             ${MAKE} -f Makefile.inc1 _generic_libs;
931
932 # These dependencies are not automatically generated:
933 #
934 # gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
935 # shared libraries for ELF.
936 #
937 _startup_libs=  gnu/lib/csu gnu/lib/libgcc
938 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
939 _startup_libs+= lib/csu/${MACHINE_ARCH}-elf
940 .else
941 _startup_libs+= lib/csu/${MACHINE_ARCH}
942 .endif
943
944 _prebuild_libs=
945
946 _generic_libs=  gnu/lib
947
948 .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL)
949 _prebuild_libs+=        kerberos5/lib/libasn1
950 _prebuild_libs+=        kerberos5/lib/libgssapi
951 _prebuild_libs+=        kerberos5/lib/libkrb5
952 _prebuild_libs+=        kerberos5/lib/libroken
953 _generic_libs+= kerberos5/lib
954 .endif
955
956 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libexpat \
957                 lib/libkvm lib/libmd \
958                 lib/libncurses lib/libnetgraph lib/libopie lib/libpam \
959                 lib/libradius \
960                 lib/libsbuf lib/libtacplus lib/libutil \
961                 lib/libz lib/msun
962
963 lib/libopie__L lib/libtacplus__L: lib/libmd__L
964
965 .if !defined(NO_BIND)
966 .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64"
967 _prebuild_libs+= lib/libc_r
968 .else
969 _prebuild_libs+= lib/libpthread
970 .endif
971 .endif
972
973 _generic_libs+= lib
974
975 .if !defined(NO_CRYPT)
976 .if !defined(NO_OPENSSL)
977 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
978 lib/libradius__L: secure/lib/libssl__L
979 secure/lib/libssl__L: secure/lib/libcrypto__L
980 .if !defined(NO_OPENSSH)
981 _prebuild_libs+=        secure/lib/libssh
982 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
983 .if !defined(NO_KERBEROS)
984 secure/lib/libssh__L: kerberos5/lib/libgssapi__L kerberos5/lib/libkrb5__L \
985     kerberos5/lib/libasn1__L lib/libcom_err__L lib/libmd__L \
986     kerberos5/lib/libroken__L
987 .endif
988 .endif
989 .endif
990 _generic_libs+= secure/lib
991 .endif
992
993 .if defined(NO_CRYPT) || defined(NO_OPENSSL)
994 lib/libradius__L: lib/libmd__L
995 .endif
996
997 .if !defined(NO_NIS)
998 _prebuild_libs+=        lib/libypclnt
999 .endif
1000
1001 _generic_libs+= usr.bin/lex/lib
1002
1003 .if ${MACHINE_ARCH} == "i386"
1004 _generic_libs+= usr.sbin/pcvt/keycap
1005 .endif
1006
1007 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1008 ${_lib}__L: .PHONY
1009 .if exists(${.CURDIR}/${_lib})
1010         ${_+_}@${ECHODIR} "===> ${_lib} (depend,all,install)"; \
1011                 cd ${.CURDIR}/${_lib}; \
1012                 ${MAKE} DIRPRFX=${_lib}/ depend; \
1013                 ${MAKE} DIRPRFX=${_lib}/ all; \
1014                 ${MAKE} DIRPRFX=${_lib}/ install
1015 .endif
1016 .endfor
1017
1018 # libpam is special: we need to build static PAM modules before
1019 # static PAM library, and dynamic PAM library before dynamic PAM
1020 # modules.
1021 lib/libpam__L: .PHONY
1022         ${_+_}@${ECHODIR} "===> lib/libpam (depend,all,install)"; \
1023                 cd ${.CURDIR}/lib/libpam; \
1024                 ${MAKE} DIRPRFX=lib/libpam/ depend; \
1025                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1026                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1027
1028 _startup_libs: ${_startup_libs:S/$/__L/}
1029 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1030 _generic_libs: ${_generic_libs:S/$/__L/}
1031
1032 .for __target in all clean cleandepend cleandir depend includes obj
1033 .for entry in ${SUBDIR}
1034 ${entry}.${__target}__D: .PHONY
1035         ${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1036                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1037                 edir=${entry}.${MACHINE_ARCH}; \
1038                 cd ${.CURDIR}/$${edir}; \
1039         else \
1040                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1041                 edir=${entry}; \
1042                 cd ${.CURDIR}/$${edir}; \
1043         fi; \
1044         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1045 .endfor
1046 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1047 .endfor
1048
1049 .include <bsd.subdir.mk>