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