calendar(1): Reset locale after parsing each calendar file
[dragonfly.git] / Makefile.inc1
1 #
2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
3 #
4 # This file defines the user-driven targets.
5 #
6 # Standard targets are documented in the makefiles in /usr/share/mk and include:
7 #       obj depend all install clean cleandepend cleanobj
8 #
9 # Build-time options are documented in make.conf(5).
10 #
11
12 DFLYVERSION!=   awk '/^\#define[[:blank:]]__DragonFly_version/ {print $$3}' \
13                 < ${.CURDIR}/sys/sys/param.h
14
15 OSREL!=         echo ${DFLYVERSION} | \
16                 awk '{a=int($$1/100000); b=int(($$1-(a*100000))/100); \
17                 print a "." b}'
18
19 # Put initial settings here.
20 SUBDIR=
21
22 # /libexec/ld-elf.so.2 needs to be installed first
23 # Otherwise, install(1) beeing a dynamically linked binary will fail
24 # during the first upgrade from a static to a dynamic world
25 .if exists(${.CURDIR}/libexec)
26 SUBDIR+= libexec
27 .endif
28
29 # We need to do include and lib early.
30 #
31 .if exists(${.CURDIR}/include)
32 SUBDIR+= include
33 .endif
34 .if exists(${.CURDIR}/lib)
35 SUBDIR+= lib
36 .endif
37
38 .if exists(${.CURDIR}/bin)
39 SUBDIR+= bin
40 .endif
41 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
42 SUBDIR+= games
43 .endif
44 .if exists(${.CURDIR}/gnu)
45 SUBDIR+= gnu
46 .endif
47 .if exists(${.CURDIR}/sbin)
48 SUBDIR+= sbin
49 .endif
50 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
51 SUBDIR+= share
52 .endif
53 .if exists(${.CURDIR}/sys)
54 SUBDIR+= sys
55 .endif
56 .if exists(${.CURDIR}/usr.bin)
57 SUBDIR+= usr.bin
58 .endif
59 .if exists(${.CURDIR}/usr.sbin)
60 SUBDIR+= usr.sbin
61 .endif
62
63 .if exists(${.CURDIR}/etc)
64 SUBDIR+= etc
65 .endif
66
67 # These are last, since it is nice to at least get the base system
68 # rebuilt before you do them.
69 .if defined(LOCAL_DIRS)
70 .for _DIR in ${LOCAL_DIRS}
71 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
72 SUBDIR+= ${_DIR}
73 .endif
74 .endfor
75 .endif
76
77 .if defined(SUBDIR_OVERRIDE)
78 SUBDIR=         ${SUBDIR_OVERRIDE}
79 .endif
80
81 .if defined(NOCLEANDIR)
82 CLEANDIR=       clean cleandepend
83 .else
84 CLEANDIR=       cleandir
85 .endif
86
87 .if defined(NO_CLEAN)
88 NOCLEAN=        # defined
89 .endif
90
91 # Object directory base in primary make.  Note that when we rerun make
92 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
93 # subdirectory because the rest of the build system needs it that way.
94 # The original object directory base is saved in OBJTREE.
95 #
96 MAKEOBJDIRPREFIX?=      /usr/obj
97 OBJTREE?=               ${MAKEOBJDIRPREFIX}
98
99 # Used for stage installs and pathing
100 #
101 DESTDIRBASE:=           ${OBJTREE}${.CURDIR}
102
103 # Remove DESTDIR from MAKEFLAGS.  It is present in the environment
104 # anyhow, and we need to be able to override it for stage installs
105 .MAKEFLAGS:=    ${.MAKEFLAGS:NDESTDIR=*}
106
107 # This section sets the tools used to build the world/kernel
108 WORLD_CCVER?=           gcc80
109 WORLD_LDVER?=           ld.gold
110 WORLD_BINUTILSVER?=     binutils227
111
112 # Set the backup parameters if they are not already defined
113 #
114 WORLD_BACKUP?=          /var/backups/world_backup
115 AUTO_BACKUP?=           ${OBJTREE}/world_backup/${DESTDIR}
116
117 TARGET_ARCH?=   ${MACHINE_ARCH}
118 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
119 TARGET?=        ${MACHINE}
120 .else
121 TARGET?=        ${TARGET_ARCH}
122 .endif
123 .if make(buildworld)
124 BUILD_ARCH!=    sysctl -n hw.machine_arch
125
126 # temporary until everybody has converted to x86_64
127 .if ${BUILD_ARCH} == "amd64"
128 BUILD_ARCH=     x86_64
129 .endif
130
131 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
132 .error To cross-build, set TARGET_ARCH.
133 .endif
134 .endif
135
136 # XXX this is ugly and we need to come up with a nicer solution
137 .if !defined(TARGET_PLATFORM)
138 .if ${TARGET_ARCH} == "x86_64"
139 TARGET_PLATFORM= pc64
140 .else
141 .error Unknown target architecture.
142 .endif
143 .endif
144
145 THREAD_LIB?=    thread_xu
146 .if ${THREAD_LIB} == "c_r"
147 .if defined(NO_LIBC_R)
148 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
149 .endif
150 .endif
151
152 # BTOOLS        (Natively built) All non-cross-development tools that the
153 #               main build needs.  This includes things like 'mkdir' and 'rm'.
154 #               We will not use the native system's exec path once we start
155 #               on WORLD.  (bootstrap-tools and build-tools or BTOOLS)
156 #
157 # CTOOLS        (Natively built) Cross development tools which are specific
158 #               to the target architecture.
159 #
160 # WORLD         (Cross built) Our ultimate buildworld, using only BTOOLS and
161 #               CTOOLS.
162 #
163 # MACHINE_PLATFORM      Platform Architecture we are building on
164 # MACHINE               Machine Architecture (usually the same as MACHINE_ARCH)
165 # MACHINE_ARCH          CPU Architecture we are building on
166 #
167 # TARGET_PLATFORM       Platform Architecture we are building for
168 # TARGET                Machine Architecture we are building for
169 # TARGET_ARCH           CPU Architecture we are building for
170 #
171 BTOOLSDEST=     ${DESTDIRBASE}/btools_${MACHINE_ARCH}
172 CTOOLSDEST=     ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
173 WORLDDEST=      ${DESTDIRBASE}/world_${TARGET_ARCH}
174
175 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
176 # cross-tools stages to augment the existing command path to access newer
177 # versions of certain utilities such as 'patch' that the cross-tools stage
178 # might expect.
179 #
180 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/sbin:${BTOOLSDEST}/bin
181
182 # The cross-tools path containing the cross-tools to cross build the
183 # ultimate world.
184 #
185 CTOOLSPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/sbin:${CTOOLSDEST}/bin
186
187 # The strict temporary command path contains all binaries required
188 # by the buildworld system after the cross-tools stage.
189 #
190 # NOTE: Append '/usr/local/bin:/usr/pkg/bin' to support external compilers.
191 #       See compilers.conf(5) man page for more info.
192 #
193 STRICTTMPPATH= ${CTOOLSPATH}:${BTOOLSPATH}:/usr/local/bin:/usr/pkg/bin
194
195 TMPDIR?=        /tmp
196 TMPPID!=        echo $$$$
197
198 #
199 # Building a world goes through the following stages
200 #
201 # 1. bootstrap-tool stage [BMAKE]
202 #       This stage is responsible for creating programs that
203 #       are needed for backward compatibility reasons. They
204 #       are not built as cross-tools.
205 # 2. build-tool stage [TMAKE]
206 #       This stage is responsible for creating the object
207 #       tree and building any tools that are needed during
208 #       the build process.
209 # 3. cross-tool stage [XMAKE]
210 #       This stage is responsible for creating any tools that
211 #       are needed for cross-builds. A cross-compiler is one
212 #       of them.
213 # 4. world stage [WMAKE]
214 #       This stage actually builds the world.
215 # 5. install stage (optional) [IMAKE]
216 #       This stage installs a previously built world.
217 #
218 # In all cases we must carefully adjust the environment so the proper
219 # tools and header files are used.
220 #
221 # NOTE: The M4 environment variable is used by the [f]lex binary to
222 #       override the location of the 'm4' binary.  The override is
223 #       needed for certain buildworld version transitions, specifically
224 #       past a certain point in 3.3 because the older /usr/bin/m4 will
225 #       generate output that will blow up the newer [f]lex/yacc/bison
226 #       utilities.
227 #
228
229 # bootstrap-tool stage
230 #
231 BMAKEENV=       MAKEOBJDIRPREFIX=${BTOOLSDEST} \
232                 OBJTREE=${OBJTREE} \
233                 DESTDIR=${BTOOLSDEST} \
234                 LC_ALL=C \
235                 PATH=${BTOOLSPATH}:${PATH} \
236                 M4=${BTOOLSDEST}/usr/bin/m4 \
237                 INSTALL="sh ${.CURDIR}/tools/install.sh"
238
239 BMAKE=          ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
240                 -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
241                 -DNO_WERROR -DNO_NLS -DSYSBUILD
242
243 # build-tool stage
244 #
245 TMAKEENV=       MAKEOBJDIRPREFIX=${BTOOLSDEST} \
246                 OBJTREE=${OBJTREE} \
247                 DESTDIR= \
248                 LC_ALL=C \
249                 PATH=${BTOOLSPATH}:${PATH} \
250                 M4=${BTOOLSDEST}/usr/bin/m4 \
251                 INSTALL="sh ${.CURDIR}/tools/install.sh"
252
253 TMAKE=          ${TMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
254                 -DNOSHARED -DSYSBUILD
255
256 # cross-tool stage
257 #
258 # note: TOOLS_PREFIX points to the obj root holding the cross
259 #       compiler binaries, while USRDATA_PREFIX points to the obj root
260 #       holding the target environment (and also determines where cross-built
261 #       libraries, crt*.o, and include files are installed).
262 #
263 XMAKEENV=       MAKEOBJDIRPREFIX=${CTOOLSDEST} \
264                 OBJTREE=${OBJTREE} \
265                 DESTDIR=${CTOOLSDEST} \
266                 LC_ALL=C \
267                 _SHLIBDIRPREFIX=${CTOOLSDEST} \
268                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
269                 TOOLS_PREFIX=${CTOOLSDEST} \
270                 USRDATA_PREFIX=${WORLDDEST} \
271                 SELECT_LINKER=${WORLD_LDVER} \
272                 M4=${BTOOLSDEST}/usr/bin/m4 \
273                 PATH=${BTOOLSPATH}:${PATH}
274
275 XMAKE=          ${XMAKEENV} make -f Makefile.inc1 -DNO_GDB \
276                 -DBOOTSTRAPPING -DNOMAN -DNOSHARED -DSYSBUILD
277
278 # world stage, note the strict path and note that TOOLS_PREFIX is left
279 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
280 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
281 # for both binary and library paths, even though it is being compiled to
282 # WORLDDEST.  None of the programs in the world stage are ever actually
283 # executed during the buildworld/installworld.
284 #
285 CROSSENV=       MAKEOBJDIRPREFIX=${WORLDDEST} \
286                 OBJTREE=${OBJTREE} \
287                 MACHINE_ARCH=${TARGET_ARCH} \
288                 MACHINE=${TARGET} \
289                 MACHINE_PLATFORM=${TARGET_PLATFORM} \
290                 LC_ALL=C \
291                 OBJFORMAT_PATH=${CTOOLSDEST} \
292                 HOST_CCVER=${HOST_CCVER} \
293                 CCVER=${WORLD_CCVER} \
294                 LDVER=${WORLD_LDVER} \
295                 BINUTILSVER=${WORLD_BINUTILSVER}
296
297 WMAKEENV=       ${CROSSENV} \
298                 WORLDBUILD=1 \
299                 DESTDIR=${WORLDDEST} \
300                 _SHLIBDIRPREFIX=${WORLDDEST} \
301                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
302                 M4=${BTOOLSDEST}/usr/bin/m4 \
303                 PATH=${STRICTTMPPATH}
304
305 WMAKE=          ${WMAKEENV} make -f Makefile.inc1 -DSYSBUILD
306
307 # install stage
308 #
309 IMAKEENV=       ${CROSSENV} \
310                 PATH=${STRICTTMPPATH}
311 IMAKE=          ${IMAKEENV} make -f Makefile.inc1 -DSYSBUILD
312
313 # kernel stage
314 #
315 KMAKEENV=       ${WMAKEENV}
316
317 # buildworld
318 #
319 # Attempt to rebuild the entire system, with reasonable chance of
320 # success, regardless of how old your existing system is.
321 #
322 _worldtmp: _cleantmp _mtreetmp
323 .ORDER: _cleantmp _mtreetmp
324
325 _cleantmp:
326 .if !defined(NOCLEAN)
327         rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
328 .else
329         # XXX - These two can depend on any header file.
330         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
331         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
332 .endif
333
334 _mtreetmp:
335         @echo
336         @echo "--------------------------------------------------------------"
337         @echo ">>> Rebuilding the temporary build tree"
338         @echo "--------------------------------------------------------------"
339         mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
340 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
341         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist        \
342                 -p ${_dir}/  > /dev/null
343         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist         \
344                 -p ${_dir}/usr > /dev/null
345 .endfor
346         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist     \
347                 -p ${WORLDDEST}/usr/include > /dev/null
348         ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
349
350 _bwinit:
351         @echo "--------------------------------------------------------------"
352         @echo ">>> starting buildworld target"
353         @echo "--------------------------------------------------------------"
354 _bootstrap-tools:
355         @echo
356         @echo "--------------------------------------------------------------"
357         @echo ">>> stage 1: bootstrap tools"
358         @echo "--------------------------------------------------------------"
359         cd ${.CURDIR}; ${BMAKE} bootstrap-tools
360 _cleanobj:
361         @echo
362         @echo "--------------------------------------------------------------"
363         @echo ">>> stage 2a: cleaning up the object tree"
364         @echo "--------------------------------------------------------------"
365         cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
366 _obj:
367         @echo
368         @echo "--------------------------------------------------------------"
369         @echo ">>> stage 2b: rebuilding the object tree"
370         @echo "--------------------------------------------------------------"
371         cd ${.CURDIR}; ${WMAKE} par-obj
372 _build-tools:
373         @echo
374         @echo "--------------------------------------------------------------"
375         @echo ">>> stage 2c: build tools"
376         @echo "--------------------------------------------------------------"
377         cd ${.CURDIR}; ${TMAKE} build-tools
378 _cross-tools:
379         @echo
380         @echo "--------------------------------------------------------------"
381         @echo ">>> stage 3: cross tools"
382         @echo "--------------------------------------------------------------"
383         cd ${.CURDIR}; ${XMAKE} cross-tools
384 _includes:
385         @echo
386         @echo "--------------------------------------------------------------"
387         @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
388         @echo "--------------------------------------------------------------"
389         cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
390 _libraries:
391         @echo
392         @echo "--------------------------------------------------------------"
393         @echo ">>> stage 4b: building libraries"
394         @echo "--------------------------------------------------------------"
395         cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOMAN -DNOFSCHG libraries
396 _depend:
397         @echo
398         @echo "--------------------------------------------------------------"
399         @echo ">>> stage 4c: make dependencies"
400         @echo "--------------------------------------------------------------"
401         cd ${.CURDIR}; ${WMAKE} par-depend
402 everything:
403         @echo
404         @echo "--------------------------------------------------------------"
405         @echo ">>> stage 4d: building everything"
406         @echo "--------------------------------------------------------------"
407         cd ${.CURDIR}; ${WMAKE} all
408 _initrd:
409         @echo
410         @echo "--------------------------------------------------------------"
411         @echo ">>> stage 5: building rescue and initrd"
412         @echo "--------------------------------------------------------------"
413         cd ${.CURDIR}/initrd; ${WMAKEENV} make all
414 _bwdone:
415         @echo "--------------------------------------------------------------"
416         @echo ">>> buildworld target complete"
417         @echo "--------------------------------------------------------------"
418 _qwinit:
419         @echo "--------------------------------------------------------------"
420         @echo ">>> starting quickworld target"
421         @echo "--------------------------------------------------------------"
422 _qwdone:
423         @echo "--------------------------------------------------------------"
424         @echo ">>> quickworld target complete"
425         @echo "--------------------------------------------------------------"
426 _iwinit:
427         @echo "--------------------------------------------------------------"
428         @echo ">>> starting installworld target"
429         @echo "--------------------------------------------------------------"
430
431 # note: buildworld no longer depends on _cleanobj because we rm -rf the
432 # entire object tree and built the bootstrap tools in a different location.
433 #
434 # buildworld    - build everything from scratch
435 # quickworld    - skip the bootstrap, build, and cross-build steps
436 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
437 #
438 # note: we include _obj in realquickworld to prevent accidental creation
439 # of files in /usr/src.
440
441 WMAKE_TGTS=
442 .if !defined(SUBDIR_OVERRIDE)
443 WMAKE_TGTS+=    _worldtmp _bootstrap-tools
444 .endif
445 WMAKE_TGTS+=    _obj _build-tools
446 .if !defined(SUBDIR_OVERRIDE)
447 WMAKE_TGTS+=    _cross-tools
448 .endif
449 WMAKE_TGTS+=    _includes _libraries _depend everything _initrd
450
451 .if defined(WMAKE_TGTS_OVERRIDE)
452 SUBDIR=
453 WMAKE_TGTS=     ${WMAKE_TGTS_OVERRIDE}
454 .endif
455
456 QMAKE_TGTS=     _mtreetmp _obj _includes _libraries _depend everything _initrd
457
458 buildworld: _bwinit ${WMAKE_TGTS} _bwdone
459
460 quickworld: _qwinit ${QMAKE_TGTS} _qwdone
461
462 realquickworld: _qwinit _mtreetmp _obj _includes _libraries everything _qwdone
463
464 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
465
466 .ORDER: _bwinit ${WMAKE_TGTS} _bwdone
467 .ORDER: _obj _includes
468 .ORDER: _qwinit _mtreetmp _obj
469 .ORDER: installcheck backupworld-auto
470 .ORDER: everything _qwdone
471
472
473 # installcheck
474 #
475 # Checks to be sure system is ready for installworld
476 #
477 installcheck: _iwinit
478 .for _user in _pflogd
479         @pw usershow ${_user} >/dev/null || { \
480             echo "You need to run 'make preupgrade' first."; \
481             /usr/bin/false; \
482         }
483 .endfor
484 .for _group in _pflogd authpf
485         @pw groupshow ${_group} >/dev/null || { \
486             echo "You need to run 'make preupgrade' first."; \
487             /usr/bin/false; \
488         }
489 .endfor
490 .if !defined(OVERRIDE_CHECKS)
491 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
492         @case `uname -r` in \
493             1.2*|1.3-*|1.3.*|1.4.*|1.5.0-*|1.5.1-*|1.5.2-*|1.5.3-*) \
494                 echo "You must upgrade your kernel to at least 1.5.4" \
495                      "and reboot before you can safely installworld," \
496                      "due to libc/system call ABI changes."; \
497                 /usr/bin/false; \
498         esac
499         @case `uname -r` in \
500             1.*|2.*|3.0*|3.1*|3.2*|3.3*|3.4*|3.5*|3.6*) \
501                 echo "The system is too old for a normal installworld," \
502                      "you need to use 'installworld-force'."; \
503                 /usr/bin/false; \
504         esac
505 .endif
506 .endif
507
508 # installworld
509 #
510 # Backs up the current world if ${AUTO_BACKUP} is writable.
511 # Installs everything compiled by a 'buildworld'.
512 #
513 installworld: installcheck
514         -@mkdir -p ${AUTO_BACKUP} > /dev/null 2>&1
515         @cd ${.CURDIR}; \
516             (touch ${AUTO_BACKUP}/.updating > /dev/null 2>&1 && \
517              ${IMAKE} backupworld-auto) || \
518             echo "Cannot write to ${AUTO_BACKUP} - world not backed up"
519
520         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
521         ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc \
522             ${DESTDIR}/etc/upgrade/
523         cd ${.CURDIR}; ${IMAKE} -DWORLDINSTALL os-release
524         cd ${.CURDIR}; ${IMAKE} -DWORLDINSTALL initrd
525         sync
526         @echo "--------------------------------------------------------------"
527         @echo ">>> installworld target complete"
528         @echo "--------------------------------------------------------------"
529
530 os-release:
531         @echo "NAME=DragonFly" > ${DESTDIR}/etc/os-release
532         @echo "VERSION=${OSREL}-SYNTH" >> ${DESTDIR}/etc/os-release
533         @echo "VERSION_ID=${OSREL}" >> ${DESTDIR}/etc/os-release
534         @echo "ID=dragonfly" >> ${DESTDIR}/etc/os-release
535         @echo "ANSI_COLOR=\"0;32\"" >> ${DESTDIR}/etc/os-release
536         @echo "PRETTY_NAME=\"DragonFlyBSD ${OSREL}-SYNTH\"" >> ${DESTDIR}/etc/os-release
537         @echo "CPE_NAME=\"cpe:/o:dragonflybsd:dragonfly:${OSREL}\"" >> ${DESTDIR}/etc/os-release
538         @echo "SUPPORT_URL=\"http://chat.efnet.org:9090/?nick=dflynick&channels=%23dragonflybsd&Login=Login\"" >> ${DESTDIR}/etc/os-release
539         @echo "HOME_URL=\"https://www.dragonflybsd.org/\"" >> ${DESTDIR}/etc/os-release
540         @echo "BUG_REPORT_URL=\"https://bugs.dragonflybsd.org/\"" >> ${DESTDIR}/etc/os-release
541         @echo "MACHINE_ARCH=${MACHINE_ARCH}" >> ${DESTDIR}/etc/os-release
542         @echo "MACHINE=${MACHINE}" >> ${DESTDIR}/etc/os-release
543         @echo "DFLYVERSION=${DFLYVERSION}" >> ${DESTDIR}/etc/os-release
544
545 installworld-force:
546         @echo "Doing a forced installworld.  This will install to a temporary directory,"
547         @echo "then copy the main binaries and libraries with a static cpdup to ${DESTDIR}/"
548         @echo "and finally will issue a normal installworld."
549         @echo
550         @echo "Starting in 5 seconds.  ^C to abort."
551         @echo
552         sleep 1
553         rm -rf /usr/obj/temp > /dev/null 2>&1 || chflags -R noschg /usr/obj/temp
554         rm -rf /usr/obj/temp
555         mkdir -p /usr/obj/temp/cpdup/bin
556         (cd ${.CURDIR}/bin/cpdup; \
557                 make clean && \
558                 make obj && \
559                 make clean && \
560                 make CFLAGS=-static all install DESTDIR=/usr/obj/temp/cpdup NOMAN=TRUE)
561         @echo "XXXXXXXXX Installing to temporary XXXXXXXXX"
562         @sleep 1
563         (cd ${.CURDIR}; ${MAKE} installworld DESTDIR=/usr/obj/temp > /dev/null 2>&1)
564         @echo "XXXXXXXXX Blasting binaries and libraries XXXXXXXXX"
565         @sleep 1
566         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/bin /bin
567         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/sbin /sbin
568         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/lib /lib
569         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/bin /usr/bin
570         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/sbin /usr/sbin
571         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/lib /usr/lib
572         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/libexec /libexec
573         /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/libexec /usr/libexec
574         @echo "XXXXXXXXX Doing final installworld XXXXXXXX"
575         sleep 5
576         (cd ${.CURDIR}; ${MAKE} installworld OVERRIDE_CHECKS=TRUE)
577         (cd ${.CURDIR}; ${MAKE} upgrade OVERRIDE_CHECKS=TRUE)
578         (cd ${.CURDIR}; ${MAKE} initrd)
579
580 # reinstall
581 #
582 # If you have a build server, you can NFS mount the source and obj directories
583 # and do a 'make reinstall' on the *client* to install new binaries from the
584 # most recent server build.
585 #
586 reinstall:
587         @echo "--------------------------------------------------------------"
588         @echo ">>> Making hierarchy"
589         @echo "--------------------------------------------------------------"
590         cd ${.CURDIR}; make -f Makefile.inc1 hierarchy
591         @echo
592         @echo "--------------------------------------------------------------"
593         @echo ">>> Installing everything"
594         @echo "--------------------------------------------------------------"
595         cd ${.CURDIR}; make -f Makefile.inc1 install
596
597 # initrd
598 #
599 # Install the rescue tools and the initrd image built by 'buildworld'.
600 #
601 initrd: .PHONY
602         (cd ${.CURDIR}/initrd; ${IMAKEENV} make install)
603
604
605 # buildkernel, nativekernel, quickkernel, realquickkernel, and installkernel
606 #
607 # Which kernels to build and/or install is specified by setting
608 # KERNCONF. If not defined an X86_64_GENERIC kernel is built/installed.
609 # Only the existing (depending TARGET) config files are used
610 # for building kernels and only the first of these is designated
611 # as the one being installed.
612 #
613 # You can specify INSTALLSTRIPPED=1 if you wish the installed
614 # kernel and modules to be stripped of its debug info (required
615 # symbols are left intact).  You can specify INSTALLSTRIPPEDMODULES
616 # if you only want to strip the modules of their debug info.  These
617 # only apply if you have DEBUG=-g in your kernel config or make line.
618 #
619 # Note that we have to use TARGET instead of TARGET_ARCH when
620 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
621 # be set to cross-build, we have to make sure TARGET is set
622 # properly.
623
624 .if !defined(KERNCONF) && defined(KERNEL)
625 KERNCONF=       ${KERNEL}
626 KERNWARN=       yes
627 .else
628 # XXX makeshift fix to build the right kernel for the (target) architecture
629 # We should configure this in the platform files somehow
630 .if ${TARGET_ARCH} == "x86_64"
631 KERNCONF?=      X86_64_GENERIC
632 .endif
633 .endif
634 INSTKERNNAME?=  kernel
635
636 KRNLSRCDIR=     ${.CURDIR}/sys
637 KRNLCONFDIR=    ${KRNLSRCDIR}/config
638 KRNLOBJDIR=     ${OBJTREE}${KRNLSRCDIR}
639 KERNCONFDIR?=   ${KRNLCONFDIR}
640
641 BUILDKERNELS=
642 INSTALLKERNEL=
643 .for _kernel in ${KERNCONF}
644 .if exists(${KERNCONFDIR}/${_kernel})
645 BUILDKERNELS+=  ${_kernel}
646 .if empty(INSTALLKERNEL)
647 INSTALLKERNEL= ${_kernel}
648 .endif
649 .endif
650 .endfor
651
652 # kernel version numbers survive rm -rf
653 #
654 .for _kernel in ${BUILDKERNELS}
655 .if exists(${KRNLOBJDIR}/${_kernel}/version)
656 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
657 .endif
658 .endfor
659
660 # buildkernel
661 #
662 # Builds all kernels defined by BUILDKERNELS.
663 #
664 bk_tools:
665         @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
666             echo "You must buildworld before buildkernel.  If you wish"; \
667             echo "to build a kernel using native tools, config it manually"; \
668             echo "or use the nativekernel target if you are in a rush"; \
669             /usr/bin/false; \
670         fi
671
672 maybe_bk_tools:
673 .for _kernel in ${BUILDKERNELS}
674         @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
675             if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
676                 echo "The kernel was build using buildworld tools which no" ; \
677                 echo "longer appear to exist, (real)quickkernel failed!" ; \
678                 /usr/bin/false; \
679             fi; \
680         fi
681 .endfor
682
683 bk_build_list:
684 .if empty(BUILDKERNELS)
685         @echo ">>> ERROR: Missing kernel configuration file(s)."
686         @echo ">>> ${KERNCONF} not found in ${KERNCONFDIR}."
687         @false
688 .endif
689
690 bk_kernwarn:
691 .if defined(KERNWARN)
692         @echo "--------------------------------------------------------------"
693         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
694         @echo "--------------------------------------------------------------"
695         @sleep 3
696 .endif
697         @echo
698
699 # The buildkernel target rebuilds the specified kernels from scratch
700 # using the crossbuild tools generated by the last buildworld.  It is
701 # the safest (but also the most time consuming) way to build a new kernel.
702 #
703 buildkernel:    bk_tools bk_build_list bk_kernwarn
704 .for _kernel in ${BUILDKERNELS}
705         @echo "--------------------------------------------------------------"
706         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
707         @echo "--------------------------------------------------------------"
708         @echo "===> ${_kernel}"
709 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
710         rm -rf ${KRNLOBJDIR}/${_kernel}
711 .else
712         @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
713                 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
714                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
715 .endif
716         mkdir -p ${KRNLOBJDIR}
717 .if !defined(NO_KERNELCONFIG)
718         cd ${KRNLCONFDIR}; \
719                 PATH=${STRICTTMPPATH} \
720                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
721                         ${KERNCONFDIR}/${_kernel}
722 .endif
723 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
724         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
725 .endif
726         touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
727 .if !defined(NO_KERNELDEPEND)
728         cd ${KRNLOBJDIR}/${_kernel}; \
729             ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
730 .endif
731         cd ${KRNLOBJDIR}/${_kernel}; \
732             ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
733         @echo "--------------------------------------------------------------"
734         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
735         @echo "--------------------------------------------------------------"
736 .endfor
737
738 # The nativekernel target rebuilds the specified kernels from scratch
739 # using the system's standard compiler rather than using the crossbuild
740 # tools generated by the last buildworld.  This is fairly safe if your
741 # system is reasonable up-to-date.
742 #
743 nativekernel:   bk_build_list bk_kernwarn
744 .for _kernel in ${BUILDKERNELS}
745         @echo "--------------------------------------------------------------"
746         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
747         @echo "--------------------------------------------------------------"
748         @echo "===> ${_kernel}"
749 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
750         rm -rf ${KRNLOBJDIR}/${_kernel}
751 .else
752         @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
753                 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
754                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
755 .endif
756         mkdir -p ${KRNLOBJDIR}
757 .if !defined(NO_KERNELCONFIG)
758         cd ${KRNLCONFDIR}; \
759                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
760                         ${KERNCONFDIR}/${_kernel}
761 .endif
762 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
763         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
764 .endif
765         touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
766 .if !defined(NO_KERNELDEPEND)
767         cd ${KRNLOBJDIR}/${_kernel}; \
768             make KERNEL=${INSTKERNNAME} depend
769 .endif
770         cd ${KRNLOBJDIR}/${_kernel}; \
771             make KERNEL=${INSTKERNNAME} all
772         @echo "--------------------------------------------------------------"
773         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
774         @echo "--------------------------------------------------------------"
775 .endfor
776
777 # The (real)quickkernel target rebuilds the specified kernels as quickly
778 # as possible.  It will use the native tools or the buildworld cross tools
779 # based on whether the kernel was originally generated via buildkernel or
780 # nativekernel.  Config is rerun but the object hierarchy is not rebuilt.
781 # realquickkernel skips the depend step (analogous to realquickworld).
782 #
783 quickkernel realquickkernel:    maybe_bk_tools bk_build_list bk_kernwarn
784 .for _kernel in ${BUILDKERNELS}
785         @echo "--------------------------------------------------------------"
786         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
787         @echo "--------------------------------------------------------------"
788         @echo "===> ${_kernel}"
789 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
790 .if !defined(NO_KERNELCONFIG)
791         cd ${KRNLCONFDIR}; \
792                 PATH=${STRICTTMPPATH} \
793                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
794                         ${KERNCONFDIR}/${_kernel}
795 .endif
796 .if !defined(NO_KERNELDEPEND) && !make(realquickkernel)
797         cd ${KRNLOBJDIR}/${_kernel}; \
798             ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
799 .endif
800         cd ${KRNLOBJDIR}/${_kernel}; \
801             ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
802 .else
803 .if !defined(NO_KERNELCONFIG)
804         cd ${KRNLCONFDIR}; \
805             config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
806                 ${KERNCONFDIR}/${_kernel}
807 .endif
808 .if !defined(NO_KERNELDEPEND) && !make(realquickkernel)
809         cd ${KRNLOBJDIR}/${_kernel}; \
810             make KERNEL=${INSTKERNNAME} depend
811 .endif
812         cd ${KRNLOBJDIR}/${_kernel}; \
813             make KERNEL=${INSTKERNNAME} all
814 .endif
815         @echo "--------------------------------------------------------------"
816         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
817         @echo "--------------------------------------------------------------"
818 .endfor
819
820
821 # installkernel
822 #
823 # Install the kernel defined by INSTALLKERNEL
824 #
825 installkernel reinstallkernel:
826         @echo "--------------------------------------------------------------"
827         @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
828         @echo "--------------------------------------------------------------"
829 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
830         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
831             ${IMAKEENV} make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
832 .else
833         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
834             make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
835 .endif
836         @echo "--------------------------------------------------------------"
837         @echo ">>> Kernel install for ${INSTALLKERNEL} completed on `LC_ALL=C date`"
838         @echo "--------------------------------------------------------------"
839
840
841 # ------------------------------------------------------------------------
842 #
843 # From here onwards are utility targets used by the 'make world' and
844 # related targets.  If your 'world' breaks, you may like to try to fix
845 # the problem and manually run the following targets to attempt to
846 # complete the build.  Beware, this is *not* guaranteed to work, you
847 # need to have a pretty good grip on the current state of the system
848 # to attempt to manually finish it.  If in doubt, 'make world' again.
849 #
850
851 # bootstrap-tools: Build all tools required to build all tools.  Note that
852 # order is important in a number of cases and also note that the bootstrap
853 # and build tools stages have access to earlier binaries they themselves
854 # had generated.
855 #
856 # patch:        older patch's do not have -i.  This program must be built
857 #               first so other bootstrap tools that need to apply patches
858 #               can use it.
859 # [x]install:   dependancies on various new install features
860 # rpcgen:       old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
861 #               envs are not compatible with older objformat binaries.
862 #
863
864 # BSTRAPDIRS1 - must be built in strict order, no parallelism
865 #
866 # order is very important. yacc before m4 before flex.  flex exec's m4,
867 # m4's parser file needs the latest byacc (insanity!).
868 #
869 BSTRAPDIRS1= \
870         usr.bin/patch \
871         bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo \
872         bin/test bin/cat bin/ln bin/mv bin/expr bin/sh \
873         bin/hostname bin/kill \
874         usr.bin/yacc usr.bin/m4 usr.bin/localedef \
875         usr.bin/uudecode usr.bin/xinstall \
876         usr.bin/rpcgen usr.bin/bmake usr.bin/awk usr.bin/stat \
877         usr.bin/find usr.bin/flex
878
879 # BSTRAPDIRS2 - may built in parallel
880 #
881 BSTRAPDIRS2= \
882         usr.bin/sed usr.bin/uname usr.bin/touch \
883         usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
884         usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
885         usr.bin/gencat usr.bin/chflags \
886         usr.bin/uuencode usr.bin/cap_mkdb usr.bin/true usr.bin/false \
887         usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
888         usr.bin/tail usr.bin/unifdef \
889         usr.sbin/chown usr.sbin/mtree usr.sbin/config \
890         usr.sbin/zic usr.sbin/pwd_mkdb \
891         gnu/usr.bin/grep usr.bin/sort usr.bin/gzip \
892         usr.bin/mkcsmapper usr.bin/mkesdb usr.bin/crunch
893
894 bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
895         touch ${BTOOLSDEST}/.bootstrap_done
896
897 bootstrap-tools-before:
898         ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
899
900 bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
901
902 bootstrap-tools-targets2: ${BSTRAPDIRS2:S/^/bstrap-/}
903
904 .ORDER: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
905
906 .ORDER: ${BSTRAPDIRS1:S/^/bstrap-/}
907
908 .for _tool in ${BSTRAPDIRS1} ${BSTRAPDIRS2}
909 bstrap-${_tool}!
910         ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
911                 cd ${.CURDIR}/${_tool}; \
912                 make DIRPRFX=${_tool}/ obj && \
913                 make DIRPRFX=${_tool}/ depend && \
914                 make DIRPRFX=${_tool}/ all && \
915                 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
916 .endfor
917
918 # build-tools: Build special purpose build tools.
919 #
920 # XXX we may be able to remove or consolidate this into bootstrap-tools
921 # now that we have the native helper (.nx/.no) infrastructure.
922 #
923 # XXX we should separate this into new Makefile.inc2.
924 # Just to prepare for reduction of ORDER: that slows down parallel crossworld.
925
926 # Make sure Makefile.inc1 logic is intact.
927 .if !defined(WORLD_ALTCOMPILER)
928 .warning undefined WORLD_ALTCOMPILER
929 .endif
930
931 # gcc80 is now the default compiler.  See sys.mk for WORLD_ALTCOMPILER default
932 # and this file for WORLD_CCVER.
933 #
934 _gcc47_cross= gnu/usr.bin/cc47
935 _gcc80_cross= gnu/usr.bin/cc80
936 _gcc_common_cross= lib/libz gnu/usr.bin/gmp gnu/usr.bin/mpfr gnu/usr.bin/mpc
937
938 .if !defined(NO_ALTCOMPILER)
939 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
940 _altcompiler_cross+= ${_gcc47_cross}
941 . endif
942 .endif
943
944 _basecompiler_cross= ${_gcc80_cross}
945
946 _custom_cross= libexec/customcc
947 _binutils= gnu/usr.bin/${WORLD_BINUTILSVER}
948
949 build-tools: build-tools-targets
950         touch ${BTOOLSDEST}/.build_done
951
952 build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
953
954 #
955 # cross-tools: Build cross-building tools
956 #
957
958 CTOOLSDIRS= usr.bin/objformat
959
960 CTOOLSDIRS+=    ${_binutils} \
961                 ${_gcc_common_cross} \
962                 ${_altcompiler_cross} \
963                 ${_basecompiler_cross} ${_custom_cross}
964
965 cross-tools: cross-tools-targets
966         touch ${CTOOLSDEST}/.cross_done
967
968 cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
969
970 .for _tool in ${CTOOLSDIRS}
971 ctools-${_tool}!
972         ${ECHODIR} "===> ${_tool} (cross-tools)"; \
973                 cd ${.CURDIR}/${_tool}; \
974                 make DIRPRFX=${_tool}/ obj && \
975                 make DIRPRFX=${_tool}/ depend && \
976                 make DIRPRFX=${_tool}/ all && \
977                 make DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
978 .endfor
979
980 #
981 # hierarchy - ensure that all the needed directories are present
982 #
983 hierarchy:
984         cd ${.CURDIR}/etc;              make distrib-dirs
985
986 #
987 # libraries - build all libraries, and install them under ${DESTDIR}.
988 #
989 # The list of libraries with dependents (${_prebuild_libs}) and their
990 # interdependencies (__L) are built automatically by the
991 # ${.CURDIR}/tools/make_libdeps.sh script.
992 #
993 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
994 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
995 #
996 libraries:
997         cd ${.CURDIR}; \
998             HOST_CCVER=${HOST_CCVER} CCVER=gcc80 \
999                 make -f Makefile.inc1 _startup_libs80 -DSYSBUILD -DLIBGCC_ONLY;
1000 .if !defined(NO_ALTCOMPILER)
1001 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
1002         cd ${.CURDIR}; \
1003             HOST_CCVER=${HOST_CCVER} CCVER=gcc47 \
1004                 make -f Makefile.inc1 _startup_libs47 -DSYSBUILD -DLIBGCC_ONLY;
1005 . endif
1006 .endif
1007         cd ${.CURDIR}; \
1008             make -f Makefile.inc1 _startup_libs -DSYSBUILD && \
1009             make -f Makefile.inc1 _prebuild_libs -DSYSBUILD && \
1010             make -f Makefile.inc1 _generic_libs -DSYSBUILD && \
1011             touch ${WORLDDEST}/.libraries_done
1012
1013 # These dependencies are not automatically generated:
1014 #
1015 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
1016 # shared libraries for ELF.  The target for _startup_libsXX is
1017 # specifically built using gccXX.
1018 #
1019 _startup_libs47=        gnu/usr.bin/cc47/cc_prep \
1020                         gnu/usr.bin/cc47/cc_tools \
1021                         gnu/lib/gcc47/csu \
1022                         gnu/lib/gcc47/libgcc \
1023                         gnu/lib/gcc47/libgcc_eh \
1024                         gnu/lib/gcc47/libgcc_pic
1025
1026 _startup_libs80=        gnu/usr.bin/cc80/cc_prep \
1027                         gnu/usr.bin/cc80/cc_tools \
1028                         gnu/lib/gcc80/csu \
1029                         gnu/lib/gcc80/libgcc \
1030                         gnu/lib/gcc80/libgcc_eh \
1031                         gnu/lib/gcc80/libgcc_pic
1032
1033 .if !defined(NO_ALTCOMPILER)
1034 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
1035 _startup_libs_alt+=     _startup_libs47
1036 . endif
1037 .endif
1038
1039 _startup_libs_base=     _startup_libs80
1040
1041 _startup_libs=          lib/csu lib/libc lib/libc_rtld
1042 lib/libc__L: lib/csu__L
1043
1044 _prebuild_libs=         lib/libbz2 lib/liblzma lib/libz
1045 _prebuild_libs+=        lib/libutil
1046
1047 _prebuild_libs+=        lib/libelf
1048 _prebuild_libs+=        lib/libpcap
1049
1050 _generic_libs=  gnu/lib
1051
1052 _prebuild_libs+= lib/libcrypt lib/libncurses/libncurses
1053
1054 _generic_libs+= lib
1055
1056 _prebuild_libs+=        lib/librecrypto lib/libressl
1057 lib/libressl__L: lib/librecrypto__L
1058
1059 _prebuild_libs+= lib/libsbuf lib/libm \
1060                 lib/libpam/libpam lib/libypclnt lib/lib${THREAD_LIB} \
1061                 lib/libpthread lib/libprop
1062
1063 _generic_libs+= usr.bin/flex/lib
1064
1065 .for _alib in ${_startup_libs_alt} ${_startup_libs_base}
1066 __startup_alibs+= ${${_alib}}
1067 .endfor
1068
1069 .for _lib in ${__startup_alibs} \
1070                 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
1071 ${_lib}__L: .PHONY
1072 .if exists(${.CURDIR}/${_lib})
1073         @${ECHODIR} "===> ${_lib}"; \
1074                 cd ${.CURDIR}/${_lib}; \
1075                 echo "STEP DEP ${_lib}" && \
1076                 make DIRPRFX=${_lib}/ depend && \
1077                 echo "STEP ALL ${_lib}" && \
1078                 make DIRPRFX=${_lib}/ all && \
1079                 echo "STEP INSTALL ${_lib}" && \
1080                 make DIRPRFX=${_lib}/ install && \
1081                 echo "STEP DONE ${_lib}";
1082 .else
1083 .warning missing ${.CURDIR}/${_lib} directory.
1084 .endif
1085 .endfor
1086
1087 _startup_libs: ${_startup_libs:S/$/__L/}
1088 .for _alib in ${_startup_libs_alt} ${_startup_libs_base}
1089 ${_alib}: ${${_alib}:C/$/__L/}
1090 .endfor
1091 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1092 _generic_libs: ${_generic_libs:S/$/__L/}
1093
1094 # library targets must be ordered because there are inter-library
1095 # races (e.g. generation of tconfig.h)
1096 #
1097 .for _alib in ${_startup_libs_base} ${_startup_libs_alt}
1098 .ORDER: ${${_alib}:C/$/__L/}
1099 .endfor
1100
1101 # uncomment if there are missing dependencies
1102 .if 0
1103 .ORDER: ${_prebuild_libs:S/$/__L/}
1104 # we can disable this one, no lib/* depend on libstdc++
1105 .ORDER: ${_generic_libs:S/$/__L/}
1106 .endif
1107
1108 .for __target in clean cleandepend cleandir obj depend includes
1109 .for entry in ${SUBDIR}
1110 ${entry}.${__target}__D: .PHONY
1111         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1112                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
1113                 edir=${entry}.${MACHINE_ARCH}; \
1114                 cd ${.CURDIR}/$${edir}; \
1115         else \
1116                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
1117                 edir=${entry}; \
1118                 cd ${.CURDIR}/$${edir}; \
1119         fi; \
1120         make ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1121 .endfor
1122 par-${__target}: ${SUBDIR:C/$/.${__target}__D/}
1123 .ORDER: ${SUBDIR:C/$/.${__target}__D/}
1124 .endfor
1125 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1126
1127 # The wmake target is used by /usr/bin/wmake to run make in a
1128 # world build environment.
1129 #
1130 wmake:
1131         @echo '${WMAKEENV} make ${WMAKE_ARGS} -DSYSBUILD'
1132
1133 wmakeenv:
1134         @echo '${WMAKEENV} /bin/sh'
1135
1136 bmake:
1137         @echo '${BMAKEENV} make ${BMAKE_ARGS} -DSYSBUILD'
1138
1139 bmakeenv:
1140         @echo '${BMAKEENV} /bin/sh'
1141
1142 tmake:
1143         @echo '${TMAKEENV} make ${TMAKE_ARGS} -DSYSBUILD'
1144
1145 tmakeenv:
1146         @echo '${TMAKEENV} /bin/sh'
1147
1148 xmake:
1149         @echo '${XMAKEENV} make ${XMAKE_ARGS} -DSYSBUILD'
1150
1151 xmakeenv:
1152         @echo '${XMAKEENV} /bin/sh'
1153
1154 backupworld: backup-clean
1155         @mkdir -p ${WORLD_BACKUP}
1156 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1157      exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1158      exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1159         tar -czf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1160                 --options gzip:compression-level=1 \
1161                 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1162 .endif
1163
1164 backupworld-auto:
1165 .if !defined(NO_BACKUP)
1166         rm -f ${AUTO_BACKUP}/binaries.tar.gz
1167         @mkdir -p ${AUTO_BACKUP}
1168 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1169      exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1170      exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1171         /usr/bin/tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1172                 --options gzip:compression-level=1 \
1173                 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1174 .endif
1175 .endif
1176
1177 backup-auto-clean:
1178         rm -f ${AUTO_BACKUP}/binaries.tar.gz
1179
1180 backup-clean:
1181         rm -f ${WORLD_BACKUP}/binaries.tar.gz
1182
1183 restoreworld:
1184 .if !exists(${WORLD_BACKUP}/binaries.tar.gz)
1185         @echo "There does not seem to be a valid archive present."
1186 .else
1187         @echo "Restoring system binaries from manual backup archive..."
1188         @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1189                 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1190                 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1191         tar -xzf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1192 .endif
1193
1194 restoreworld-auto:
1195 .if !exists(${AUTO_BACKUP}/binaries.tar.gz)
1196         @echo "There does not seem to be a valid archive present."
1197 .else
1198         @echo "Restoring system binaries from auto-backup archive..."
1199         @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1200                 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1201                 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1202         tar -xzf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1203 .endif
1204
1205 # Take advantage of bmake error response
1206 #
1207 MAKE_PRINT_VAR_ON_ERROR= \
1208         .CURDIR \
1209         .OBJDIR \
1210         .TARGETS \
1211         .ERROR_TARGET \
1212         .MAKE.LEVEL \
1213         .MAKE.MODE \
1214         PATH \
1215         LD_LIBRARY_PATH \
1216         MACHINE_ARCH \
1217         MACHINE \
1218         MAKEFILE \
1219         MAKESYSPATH \
1220         MAKEOBJDIRPREFIX \
1221         WORLD_ALTCOMPILER \
1222         DESTDIR \
1223         SHELL .SHELL
1224 .if ${.MAKE.LEVEL} > 0
1225 MAKE_PRINT_VAR_ON_ERROR+= .MAKE.MAKEFILES .PATH
1226 .endif
1227
1228 .include <bsd.subdir.mk>