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