| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | # |
| 2 | # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $ | |
| 78792546 | 3 | # $DragonFly: src/Makefile.inc1,v 1.118 2008/06/24 20:22:30 thomas Exp $ |
| cecff5c1 MD |
4 | # |
| 5 | # Build-time options are documented in make.conf(5). | |
| 984263bc MD |
6 | # |
| 7 | # The intended user-driven targets are: | |
| 1397f94a | 8 | # |
| 984263bc | 9 | # buildworld - rebuild *everything*, including glue to help do upgrades |
| 1397f94a MD |
10 | # quickworld - skip the glue and do a depend+build on the meat |
| 11 | # realquickworld - skip the glue and depend stages and just build the meat | |
| 12 | # crossworld - only build the glue (particularly the cross-build environment) | |
| 984263bc | 13 | # installworld- install everything built by "buildworld" |
| 984263bc MD |
14 | # most - build user commands, no libraries or include files |
| 15 | # installmost - install user commands, no libraries or include files | |
| 16 | # | |
| 17 | # Standard targets (not defined here) are documented in the makefiles in | |
| 18 | # /usr/share/mk. These include: | |
| 19 | # obj depend all install clean cleandepend cleanobj | |
| 20 | ||
| 21 | # Put initial settings here. | |
| 22 | SUBDIR= | |
| 23 | ||
| 24 | # We must do share/info early so that installation of info `dir' | |
| 25 | # entries works correctly. Do it first since it is less likely to | |
| 26 | # grow dependencies on include and lib than vice versa. | |
| 27 | .if exists(${.CURDIR}/share/info) | |
| 28 | SUBDIR+= share/info | |
| 29 | .endif | |
| 30 | ||
| 31 | # We must do include and lib early so that the perl *.ph generation | |
| 32 | # works correctly as it uses the header files installed by this. | |
| 33 | .if exists(${.CURDIR}/include) | |
| 34 | SUBDIR+= include | |
| 35 | .endif | |
| 36 | .if exists(${.CURDIR}/lib) | |
| 37 | SUBDIR+= lib | |
| 38 | .endif | |
| 17d0fefe MD |
39 | # This exists simply to ensure that the obj dir hierarchy is |
| 40 | # intact for nrelease, allowing the nrelease Makefile's to | |
| 41 | # reference ${.OBJDIR}. | |
| 42 | # | |
| 43 | .if exists(${.CURDIR}/nrelease) | |
| 44 | SUBDIR+= nrelease | |
| 45 | .endif | |
| 984263bc MD |
46 | |
| 47 | .if exists(${.CURDIR}/bin) | |
| 48 | SUBDIR+= bin | |
| 49 | .endif | |
| cecff5c1 | 50 | .if exists(${.CURDIR}/games) && !defined(NO_GAMES) |
| 984263bc MD |
51 | SUBDIR+= games |
| 52 | .endif | |
| 53 | .if exists(${.CURDIR}/gnu) | |
| 54 | SUBDIR+= gnu | |
| 55 | .endif | |
| 984263bc MD |
56 | .if exists(${.CURDIR}/libexec) |
| 57 | SUBDIR+= libexec | |
| 58 | .endif | |
| 59 | .if exists(${.CURDIR}/sbin) | |
| 60 | SUBDIR+= sbin | |
| 61 | .endif | |
| cecff5c1 | 62 | .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT) |
| 984263bc MD |
63 | SUBDIR+= secure |
| 64 | .endif | |
| cecff5c1 | 65 | .if exists(${.CURDIR}/share) && !defined(NO_SHARE) |
| 984263bc MD |
66 | SUBDIR+= share |
| 67 | .endif | |
| 68 | .if exists(${.CURDIR}/sys) | |
| 69 | SUBDIR+= sys | |
| 70 | .endif | |
| 71 | .if exists(${.CURDIR}/usr.bin) | |
| 72 | SUBDIR+= usr.bin | |
| 73 | .endif | |
| 74 | .if exists(${.CURDIR}/usr.sbin) | |
| 75 | SUBDIR+= usr.sbin | |
| 76 | .endif | |
| 77 | ||
| 984263bc MD |
78 | .if exists(${.CURDIR}/etc) |
| 79 | SUBDIR+= etc | |
| 80 | .endif | |
| 81 | ||
| 82 | # These are last, since it is nice to at least get the base system | |
| 83 | # rebuilt before you do them. | |
| 84 | .if defined(LOCAL_DIRS) | |
| 85 | .for _DIR in ${LOCAL_DIRS} | |
| 86 | .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile) | |
| 87 | SUBDIR+= ${_DIR} | |
| 88 | .endif | |
| 89 | .endfor | |
| 90 | .endif | |
| 91 | ||
| 92 | .if defined(SUBDIR_OVERRIDE) | |
| 93 | SUBDIR= ${SUBDIR_OVERRIDE} | |
| 94 | .endif | |
| 95 | ||
| 96 | .if defined(NOCLEANDIR) | |
| 97 | CLEANDIR= clean cleandepend | |
| 98 | .else | |
| 99 | CLEANDIR= cleandir | |
| 100 | .endif | |
| 101 | ||
| 9974d917 SS |
102 | .if defined(NO_CLEAN) |
| 103 | NOCLEAN= # defined | |
| 104 | .endif | |
| d0a8f509 | 105 | |
| 1397f94a MD |
106 | # Object directory base in primary make. Note that when we rerun make |
| 107 | # from inside this file we change MAKEOBJDIRPREFIX to the appropriate | |
| 108 | # subdirectory because the rest of the build system needs it that way. | |
| 109 | # The original object directory base is saved in OBJTREE. | |
| 110 | # | |
| 984263bc | 111 | MAKEOBJDIRPREFIX?= /usr/obj |
| 1397f94a MD |
112 | OBJTREE?= ${MAKEOBJDIRPREFIX} |
| 113 | ||
| 114 | # Used for stage installs and pathing | |
| 115 | # | |
| 116 | DESTDIRBASE?= ${OBJTREE}${.CURDIR} | |
| 117 | ||
| c89fd520 SS |
118 | # Remove DESTDIR from MAKEFLAGS. It is present in the environment |
| 119 | # anyhow, and we need to be able to override it for stage installs | |
| 120 | .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*} | |
| 121 | ||
| 79809ae1 SS |
122 | # This sets the compiler we use to build the world/kernel with |
| 123 | WORLD_CCVER?= gcc41 | |
| ded5c503 | 124 | |
| 984263bc MD |
125 | TARGET_ARCH?= ${MACHINE_ARCH} |
| 126 | .if ${TARGET_ARCH} == ${MACHINE_ARCH} | |
| 127 | TARGET?= ${MACHINE} | |
| 128 | .else | |
| 129 | TARGET?= ${TARGET_ARCH} | |
| 130 | .endif | |
| 131 | .if make(buildworld) | |
| 132 | BUILD_ARCH!= sysctl -n hw.machine_arch | |
| 133 | .if ${MACHINE_ARCH} != ${BUILD_ARCH} | |
| 134 | .error To cross-build, set TARGET_ARCH. | |
| 135 | .endif | |
| 136 | .endif | |
| 1397f94a | 137 | |
| 0955fd91 MD |
138 | # Backwards compatibility with older make's or older sys.mk's. make |
| 139 | # is expected to define MACHINE_PLATFORM. | |
| 140 | # | |
| 141 | .if !defined(MACHINE_PLATFORM) | |
| 142 | MACHINE_PLATFORM= pc32 | |
| 143 | .endif | |
| 4d005c1d SS |
144 | |
| 145 | # XXX this is ugly and we need to come up with a nicer solution | |
| 146 | .if !defined(TARGET_PLATFORM) | |
| 147 | .if ${TARGET_ARCH} == "i386" | |
| 148 | TARGET_PLATFORM= pc32 | |
| 149 | .elif ${TARGET_ARCH} == "amd64" | |
| 150 | TARGET_PLATFORM= pc64 | |
| 151 | .else | |
| 152 | .error Unknown target architecture. | |
| 153 | .endif | |
| 154 | .endif | |
| 0955fd91 | 155 | |
| 5f87b7d3 SZ |
156 | THREAD_LIB?= thread_xu |
| 157 | .if ${THREAD_LIB} == "c_r" | |
| 158 | .if defined(NO_LIBC_R) | |
| 159 | .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined | |
| 160 | .endif | |
| 161 | .endif | |
| 162 | ||
| 1397f94a MD |
163 | # BTOOLS (Natively built) All non-cross-development tools that the |
| 164 | # main build needs. This includes things like 'mkdir' and 'rm'. | |
| 165 | # We will not use the native system's exec path once we start | |
| 166 | # on WORLD. (bootstrap-tools and build-tools or BTOOLS) | |
| 167 | # | |
| 168 | # CTOOLS (Natively built) Cross development tools which are specific | |
| 169 | # to the target architecture. | |
| 170 | # | |
| 171 | # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and | |
| 172 | # CTOOLS. | |
| 173 | # | |
| 0955fd91 MD |
174 | # MACHINE_PLATFORM Platform Architecture we are building on |
| 175 | # MACHINE Machine Architecture (usually the same as MACHINE_ARCH) | |
| e2ea6619 MD |
176 | # MACHINE_ARCH Cpu Architecture we are building on |
| 177 | # | |
| 0955fd91 MD |
178 | # TARGET_PLATFORM Platform Architecture we are building for |
| 179 | # TARGET Machine Architecture we are building for | |
| e2ea6619 | 180 | # TARGET_ARCH Cpu Architecture we are building for |
| 1397f94a MD |
181 | # |
| 182 | BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH} | |
| 183 | CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH} | |
| 184 | WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH} | |
| 185 | ||
| 79aa78bc MD |
186 | # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and |
| 187 | # cross-tools stages to augment the existing command path to access newer | |
| 188 | # versions of certain utilities such as 'patch' that the cross-tools stage | |
| 189 | # might expect. | |
| 190 | # | |
| 191 | BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games | |
| 192 | ||
| 1397f94a MD |
193 | # The strict temporary command path contains all binaries required |
| 194 | # by the buildworld system after the cross-tools stage. | |
| 195 | # | |
| 196 | STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games | |
| 984263bc MD |
197 | |
| 198 | TMPDIR?= /tmp | |
| 199 | TMPPID!= echo $$$$ | |
| 984263bc MD |
200 | |
| 201 | # | |
| 202 | # Building a world goes through the following stages | |
| 203 | # | |
| 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. | |
| 220 | # | |
| 221 | ||
| 984263bc | 222 | # bootstrap-tool stage |
| 1397f94a MD |
223 | # |
| 224 | BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \ | |
| 225 | OBJTREE=${OBJTREE} \ | |
| 44831353 | 226 | DESTDIR=${BTOOLSDEST} \ |
| 79aa78bc | 227 | PATH=${BTOOLSPATH}:${PATH} \ |
| 984263bc | 228 | INSTALL="sh ${.CURDIR}/tools/install.sh" |
| 1397f94a | 229 | |
| 984263bc | 230 | BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ |
| e486d225 SS |
231 | -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \ |
| 232 | -DNO_WERROR -DNO_NLS | |
| 984263bc MD |
233 | |
| 234 | # build-tool stage | |
| 1397f94a MD |
235 | # |
| 236 | TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \ | |
| 237 | OBJTREE=${OBJTREE} \ | |
| 984263bc | 238 | DESTDIR= \ |
| 79aa78bc | 239 | PATH=${BTOOLSPATH}:${PATH} \ |
| 984263bc | 240 | INSTALL="sh ${.CURDIR}/tools/install.sh" |
| 1397f94a MD |
241 | |
| 242 | TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ | |
| e486d225 | 243 | -DNO_FORTRAN -DNOSHARED |
| 984263bc MD |
244 | |
| 245 | # cross-tool stage | |
| 1397f94a MD |
246 | # |
| 247 | # note: TOOLS_PREFIX points to the obj root holding the cross | |
| 44831353 MD |
248 | # compiler binaries, while USRDATA_PREFIX points to the obj root |
| 249 | # holding the target environment (and also determines where cross-built | |
| 250 | # libraries, crt*.o, and include files are installed). | |
| 1397f94a MD |
251 | # |
| 252 | XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \ | |
| 253 | OBJTREE=${OBJTREE} \ | |
| 254 | DESTDIR=${CTOOLSDEST} \ | |
| 255 | INSTALL="sh ${.CURDIR}/tools/install.sh" \ | |
| 256 | TOOLS_PREFIX=${CTOOLSDEST} \ | |
| 79aa78bc MD |
257 | USRDATA_PREFIX=${WORLDDEST} \ |
| 258 | PATH=${BTOOLSPATH}:${PATH} | |
| 1397f94a | 259 | |
| 44831353 | 260 | XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \ |
| e486d225 | 261 | -DBOOTSTRAPPING -DNOSHARED |
| 1397f94a MD |
262 | |
| 263 | # world stage, note the strict path and note that TOOLS_PREFIX is left | |
| 264 | # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty, | |
| 265 | # which is primarily for the compiler so it targets / (e.g. /usr/<blah>) | |
| 266 | # for both binary and library paths, even though it is being compiled to | |
| 267 | # WORLDDEST. None of the programs in the world stage are ever actually | |
| 268 | # executed during the buildworld/installworld. | |
| 269 | # | |
| 270 | CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \ | |
| 271 | OBJTREE=${OBJTREE} \ | |
| 272 | MACHINE_ARCH=${TARGET_ARCH} \ | |
| 273 | MACHINE=${TARGET} \ | |
| 0955fd91 | 274 | MACHINE_PLATFORM=${TARGET_PLATFORM} \ |
| ded5c503 | 275 | OBJFORMAT_PATH=${CTOOLSDEST} \ |
| ce6fa878 | 276 | HOST_CCVER=${HOST_CCVER} \ |
| ded5c503 | 277 | CCVER=${WORLD_CCVER} |
| 984263bc | 278 | |
| 984263bc | 279 | WMAKEENV= ${CROSSENV} \ |
| 1397f94a | 280 | DESTDIR=${WORLDDEST} \ |
| 984263bc | 281 | INSTALL="sh ${.CURDIR}/tools/install.sh" \ |
| 1397f94a MD |
282 | PATH=${STRICTTMPPATH} |
| 283 | ||
| 984263bc MD |
284 | WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 |
| 285 | ||
| 286 | # install stage | |
| b07b69cc | 287 | # |
| 984263bc | 288 | IMAKEENV= ${CROSSENV} \ |
| 1397f94a | 289 | PATH=${STRICTTMPPATH} |
| 984263bc MD |
290 | IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 |
| 291 | ||
| 292 | # kernel stage | |
| b07b69cc MD |
293 | # |
| 294 | KMAKEENV= ${WMAKEENV} | |
| 984263bc | 295 | |
| 984263bc MD |
296 | # buildworld |
| 297 | # | |
| 298 | # Attempt to rebuild the entire system, with reasonable chance of | |
| 299 | # success, regardless of how old your existing system is. | |
| 300 | # | |
| 301 | _worldtmp: | |
| 302 | @echo | |
| 303 | @echo "--------------------------------------------------------------" | |
| 304 | @echo ">>> Rebuilding the temporary build tree" | |
| 305 | @echo "--------------------------------------------------------------" | |
| 306 | .if !defined(NOCLEAN) | |
| 1397f94a | 307 | rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST} |
| 984263bc MD |
308 | .else |
| 309 | # XXX - These two can depend on any header file. | |
| 310 | rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c | |
| 311 | rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c | |
| 312 | .endif | |
| 1397f94a MD |
313 | mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST} |
| 314 | .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST} | |
| 315 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \ | |
| 316 | -p ${_dir}/ > /dev/null | |
| 317 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ | |
| 318 | -p ${_dir}/usr > /dev/null | |
| 984263bc | 319 | .endfor |
| 1397f94a MD |
320 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ |
| 321 | -p ${WORLDDEST}/usr/include > /dev/null | |
| 062db326 | 322 | ${LN} -sf ${.CURDIR}/sys ${WORLDDEST} |
| 1397f94a | 323 | |
| 984263bc MD |
324 | _bootstrap-tools: |
| 325 | @echo | |
| 326 | @echo "--------------------------------------------------------------" | |
| 327 | @echo ">>> stage 1: bootstrap tools" | |
| 328 | @echo "--------------------------------------------------------------" | |
| 329 | cd ${.CURDIR}; ${BMAKE} bootstrap-tools | |
| 330 | _cleanobj: | |
| 984263bc MD |
331 | @echo |
| 332 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 333 | @echo ">>> stage 2a: cleaning up the object tree" |
| 984263bc MD |
334 | @echo "--------------------------------------------------------------" |
| 335 | cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} | |
| 984263bc MD |
336 | _obj: |
| 337 | @echo | |
| 338 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 339 | @echo ">>> stage 2b: rebuilding the object tree" |
| 984263bc MD |
340 | @echo "--------------------------------------------------------------" |
| 341 | cd ${.CURDIR}; ${WMAKE} par-obj | |
| 342 | _build-tools: | |
| 343 | @echo | |
| 344 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 345 | @echo ">>> stage 2c: build tools" |
| 984263bc MD |
346 | @echo "--------------------------------------------------------------" |
| 347 | cd ${.CURDIR}; ${TMAKE} build-tools | |
| 348 | _cross-tools: | |
| 349 | @echo | |
| 350 | @echo "--------------------------------------------------------------" | |
| 351 | @echo ">>> stage 3: cross tools" | |
| 352 | @echo "--------------------------------------------------------------" | |
| 353 | cd ${.CURDIR}; ${XMAKE} cross-tools | |
| 354 | _includes: | |
| 355 | @echo | |
| 356 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 357 | @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include" |
| 984263bc MD |
358 | @echo "--------------------------------------------------------------" |
| 359 | cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes | |
| 360 | _libraries: | |
| 361 | @echo | |
| 362 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 363 | @echo ">>> stage 4b: building libraries" |
| 984263bc MD |
364 | @echo "--------------------------------------------------------------" |
| 365 | cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries | |
| 366 | _depend: | |
| 367 | @echo | |
| 368 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 369 | @echo ">>> stage 4c: make dependencies" |
| 984263bc MD |
370 | @echo "--------------------------------------------------------------" |
| 371 | cd ${.CURDIR}; ${WMAKE} par-depend | |
| 372 | everything: | |
| 373 | @echo | |
| 374 | @echo "--------------------------------------------------------------" | |
| 1397f94a | 375 | @echo ">>> stage 4d: building everything.." |
| 984263bc MD |
376 | @echo "--------------------------------------------------------------" |
| 377 | cd ${.CURDIR}; ${WMAKE} all | |
| 378 | ||
| 1397f94a MD |
379 | # note: buildworld no longer depends on _cleanobj because we rm -rf the |
| 380 | # entire object tree and built the bootstrap tools in a different location. | |
| 381 | # | |
| 382 | # buildworld - build everything from scratch | |
| 383 | # quickworld - skip the bootstrap, build, and cross-build steps | |
| 384 | # realquickworld - skip the bootstrap, build, crossbuild, and depend step. | |
| 385 | # | |
| 386 | # note: we include _obj in realquickworld to prevent accidental creation | |
| 387 | # of files in /usr/src. | |
| 984263bc | 388 | |
| c08b39fe | 389 | WMAKE_TGTS= |
| 984263bc MD |
390 | .if !defined(SUBDIR_OVERRIDE) |
| 391 | WMAKE_TGTS+= _worldtmp _bootstrap-tools | |
| 392 | .endif | |
| 1397f94a | 393 | WMAKE_TGTS+= _obj _build-tools |
| 984263bc MD |
394 | .if !defined(SUBDIR_OVERRIDE) |
| 395 | WMAKE_TGTS+= _cross-tools | |
| 396 | .endif | |
| 397 | WMAKE_TGTS+= _includes _libraries _depend everything | |
| 398 | ||
| 399 | buildworld: ${WMAKE_TGTS} | |
| 1397f94a MD |
400 | |
| 401 | quickworld: _obj _includes _libraries _depend everything | |
| 402 | ||
| 403 | realquickworld: _obj _includes _libraries everything | |
| 404 | ||
| 405 | crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools | |
| 406 | ||
| 984263bc | 407 | .ORDER: ${WMAKE_TGTS} |
| 9ce30817 | 408 | .ORDER: _obj _includes |
| 984263bc MD |
409 | |
| 410 | # | |
| 411 | # installcheck | |
| 412 | # | |
| c08b39fe | 413 | # Checks to be sure system is ready for installworld |
| 984263bc MD |
414 | # |
| 415 | installcheck: | |
| 416 | .if !defined(NO_SENDMAIL) | |
| f35282e3 MD |
417 | @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1) |
| 418 | @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
| 984263bc | 419 | .endif |
| f35282e3 | 420 | @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1) |
| f35282e3 MD |
421 | @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1) |
| 422 | @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
| 9b815a46 | 423 | .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/" |
| f7ed9937 | 424 | @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" ; exit 1;; esac |
| 9b815a46 | 425 | .endif |
| 984263bc MD |
426 | # |
| 427 | # installworld | |
| 428 | # | |
| 429 | # Installs everything compiled by a 'buildworld'. | |
| 430 | # | |
| 5cccfb7b | 431 | installworld: installcheck |
| 984263bc | 432 | cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//} |
| ec6483ce | 433 | ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/ |
| 984263bc MD |
434 | |
| 435 | # | |
| 436 | # reinstall | |
| 437 | # | |
| 438 | # If you have a build server, you can NFS mount the source and obj directories | |
| 439 | # and do a 'make reinstall' on the *client* to install new binaries from the | |
| 440 | # most recent server build. | |
| 441 | # | |
| 442 | reinstall: | |
| 443 | @echo "--------------------------------------------------------------" | |
| 444 | @echo ">>> Making hierarchy" | |
| 445 | @echo "--------------------------------------------------------------" | |
| 446 | cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy | |
| 447 | @echo | |
| 448 | @echo "--------------------------------------------------------------" | |
| 449 | @echo ">>> Installing everything.." | |
| 450 | @echo "--------------------------------------------------------------" | |
| 451 | cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install | |
| 452 | .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN) | |
| 453 | @echo | |
| 454 | @echo "--------------------------------------------------------------" | |
| 455 | @echo ">>> Rebuilding man page indices" | |
| 456 | @echo "--------------------------------------------------------------" | |
| 457 | cd ${.CURDIR}/share/man; ${MAKE} makedb | |
| 458 | .endif | |
| 459 | ||
| 984263bc | 460 | # |
| fc7aca3e | 461 | # buildkernel, nativekernel, quickkernel, and installkernel |
| 984263bc MD |
462 | # |
| 463 | # Which kernels to build and/or install is specified by setting | |
| 464 | # KERNCONF. If not defined a GENERIC kernel is built/installed. | |
| 465 | # Only the existing (depending TARGET) config files are used | |
| 466 | # for building kernels and only the first of these is designated | |
| 467 | # as the one being installed. | |
| 468 | # | |
| c2c83759 MD |
469 | # You can specify INSTALLSTRIPPED=1 if you wish the installed |
| 470 | # kernel and modules to be stripped of its debug info (required | |
| 471 | # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES | |
| 472 | # if you only want to strip the modules of their debug info. These | |
| 473 | # only apply if you have DEBUG=-g in your kernel config or make line. | |
| 474 | # | |
| 984263bc MD |
475 | # Note that we have to use TARGET instead of TARGET_ARCH when |
| 476 | # we're in kernel-land. Since only TARGET_ARCH is (expected) to | |
| 477 | # be set to cross-build, we have to make sure TARGET is set | |
| 478 | # properly. | |
| 479 | ||
| 480 | .if !defined(KERNCONF) && defined(KERNEL) | |
| 481 | KERNCONF= ${KERNEL} | |
| 482 | KERNWARN= yes | |
| 483 | .else | |
| 484 | KERNCONF?= GENERIC | |
| 485 | .endif | |
| 486 | INSTKERNNAME?= kernel | |
| 487 | ||
| 488 | KRNLSRCDIR= ${.CURDIR}/sys | |
| 4e54470f | 489 | KRNLCONFDIR= ${KRNLSRCDIR}/config |
| 984263bc MD |
490 | KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR} |
| 491 | KERNCONFDIR?= ${KRNLCONFDIR} | |
| 492 | ||
| 493 | BUILDKERNELS= | |
| 494 | INSTALLKERNEL= | |
| 495 | .for _kernel in ${KERNCONF} | |
| 496 | .if exists(${KERNCONFDIR}/${_kernel}) | |
| 497 | BUILDKERNELS+= ${_kernel} | |
| 498 | .if empty(INSTALLKERNEL) | |
| 499 | INSTALLKERNEL= ${_kernel} | |
| 500 | .endif | |
| 501 | .endif | |
| 502 | .endfor | |
| 503 | ||
| 9a359590 MD |
504 | # kernel version numbers survive rm -rf |
| 505 | # | |
| 506 | .for _kernel in ${BUILDKERNELS} | |
| 507 | .if exists(${KRNLOBJDIR}/${_kernel}/version) | |
| 508 | KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version | |
| 509 | .endif | |
| 510 | .endfor | |
| 511 | ||
| 984263bc MD |
512 | # |
| 513 | # buildkernel | |
| 514 | # | |
| 515 | # Builds all kernels defined by BUILDKERNELS. | |
| 516 | # | |
| fc7aca3e | 517 | bk_tools: |
| e05c8c84 MD |
518 | @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \ |
| 519 | echo "You must buildworld before buildkernel. If you wish"; \ | |
| 520 | echo "to build a kernel using native tools, config it manually"; \ | |
| 521 | echo "or use the nativekernel target if you are in a rush"; \ | |
| 522 | exit 1; \ | |
| c2c83759 MD |
523 | fi |
| 524 | ||
| 525 | maybe_bk_tools: | |
| 526 | .for _kernel in ${BUILDKERNELS} | |
| 527 | @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \ | |
| 528 | if [ ! -f ${WORLDDEST}/.libraries_done ]; then \ | |
| 529 | echo "The kernel was build using buildworld tools which no" ; \ | |
| 530 | echo "longer appear to exist, quickkernel failed!" ; \ | |
| 531 | exit 1; \ | |
| 532 | fi; \ | |
| 533 | fi | |
| 534 | .endfor | |
| e05c8c84 | 535 | |
| fc7aca3e | 536 | bk_build_list: |
| 984263bc MD |
537 | .if empty(BUILDKERNELS) |
| 538 | @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})." | |
| 603cdb58 | 539 | @echo ">>> Did you move your kernel configs from i386/conf to config/?" |
| 984263bc MD |
540 | @false |
| 541 | .endif | |
| fc7aca3e MD |
542 | |
| 543 | bk_kernwarn: | |
| 984263bc MD |
544 | .if defined(KERNWARN) |
| 545 | @echo "--------------------------------------------------------------" | |
| 546 | @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" | |
| 547 | @echo "--------------------------------------------------------------" | |
| 548 | @sleep 3 | |
| 549 | .endif | |
| 550 | @echo | |
| fc7aca3e MD |
551 | |
| 552 | # The buildkernel target rebuilds the specified kernels from scratch | |
| 553 | # using the crossbuild tools generated by the last buildworld. It is | |
| 554 | # the safest (but also the most time consuming) way to build a new kernel. | |
| 555 | # | |
| 556 | buildkernel: bk_tools bk_build_list bk_kernwarn | |
| 984263bc MD |
557 | .for _kernel in ${BUILDKERNELS} |
| 558 | @echo "--------------------------------------------------------------" | |
| 559 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
| 560 | @echo "--------------------------------------------------------------" | |
| 561 | @echo "===> ${_kernel}" | |
| fc7aca3e MD |
562 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) |
| 563 | rm -rf ${KRNLOBJDIR}/${_kernel} | |
| 564 | .else | |
| e05c8c84 | 565 | @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \ |
| fc7aca3e | 566 | echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \ |
| e05c8c84 | 567 | rm -rf ${KRNLOBJDIR}/${_kernel}; fi |
| fc7aca3e | 568 | .endif |
| 984263bc MD |
569 | mkdir -p ${KRNLOBJDIR} |
| 570 | .if !defined(NO_KERNELCONFIG) | |
| 571 | cd ${KRNLCONFDIR}; \ | |
| 1397f94a | 572 | PATH=${STRICTTMPPATH} \ |
| 984263bc MD |
573 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ |
| 574 | ${KERNCONFDIR}/${_kernel} | |
| 575 | .endif | |
| 9a359590 MD |
576 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel}) |
| 577 | echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version | |
| 578 | .endif | |
| e05c8c84 | 579 | touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run |
| 984263bc MD |
580 | .if !defined(NO_KERNELDEPEND) |
| 581 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 582 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend | |
| 583 | .endif | |
| 584 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 585 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all | |
| 586 | @echo "--------------------------------------------------------------" | |
| 587 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
| 588 | @echo "--------------------------------------------------------------" | |
| 589 | .endfor | |
| 590 | ||
| fc7aca3e | 591 | # The nativekernel target rebuilds the specified kernels from scratch |
| 114580ac | 592 | # using the system's standard compiler rather than using the crossbuild |
| fc7aca3e MD |
593 | # tools generated by the last buildworld. This is fairly safe if your |
| 594 | # system is reasonable up-to-date. | |
| e05c8c84 | 595 | # |
| fc7aca3e | 596 | nativekernel: bk_build_list bk_kernwarn |
| e05c8c84 MD |
597 | .for _kernel in ${BUILDKERNELS} |
| 598 | @echo "--------------------------------------------------------------" | |
| 599 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
| 600 | @echo "--------------------------------------------------------------" | |
| 601 | @echo "===> ${_kernel}" | |
| fc7aca3e MD |
602 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) |
| 603 | rm -rf ${KRNLOBJDIR}/${_kernel} | |
| 604 | .else | |
| e05c8c84 | 605 | @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \ |
| fc7aca3e | 606 | echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \ |
| e05c8c84 | 607 | rm -rf ${KRNLOBJDIR}/${_kernel}; fi |
| fc7aca3e | 608 | .endif |
| e05c8c84 MD |
609 | mkdir -p ${KRNLOBJDIR} |
| 610 | .if !defined(NO_KERNELCONFIG) | |
| 611 | cd ${KRNLCONFDIR}; \ | |
| 612 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
| 613 | ${KERNCONFDIR}/${_kernel} | |
| 614 | .endif | |
| 9a359590 MD |
615 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel}) |
| 616 | echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version | |
| 617 | .endif | |
| e05c8c84 | 618 | touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run |
| e05c8c84 MD |
619 | cd ${KRNLOBJDIR}/${_kernel}; \ |
| 620 | MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \ | |
| 621 | ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile | |
| 622 | .if !defined(NO_KERNELDEPEND) | |
| 623 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 624 | ${MAKE} KERNEL=${INSTKERNNAME} depend | |
| 625 | .endif | |
| 626 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 627 | ${MAKE} KERNEL=${INSTKERNNAME} all | |
| 628 | @echo "--------------------------------------------------------------" | |
| 629 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
| 630 | @echo "--------------------------------------------------------------" | |
| 631 | .endfor | |
| 632 | ||
| fc7aca3e MD |
633 | # The quickkernel target rebuilds the specified kernels as quickly |
| 634 | # as possible. It will use the native tools or the buildworld cross tools | |
| 635 | # based on whether the kernel was originally generated via buildkernel or | |
| 636 | # nativekernel. Config is rerun but the object hierarchy is not rebuilt, | |
| 637 | # nor is the make depend step run. | |
| 984263bc | 638 | # |
| c2c83759 | 639 | quickkernel: maybe_bk_tools bk_build_list bk_kernwarn |
| fc7aca3e MD |
640 | .for _kernel in ${BUILDKERNELS} |
| 641 | @echo "--------------------------------------------------------------" | |
| 642 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
| 643 | @echo "--------------------------------------------------------------" | |
| 644 | @echo "===> ${_kernel}" | |
| 645 | .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run) | |
| 646 | .if !defined(NO_KERNELCONFIG) | |
| 647 | cd ${KRNLCONFDIR}; \ | |
| 648 | PATH=${STRICTTMPPATH} \ | |
| 649 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
| 650 | ${KERNCONFDIR}/${_kernel} | |
| 651 | .endif | |
| 652 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 653 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all | |
| 654 | .else | |
| 655 | .if !defined(NO_KERNELCONFIG) | |
| 656 | cd ${KRNLCONFDIR}; \ | |
| 657 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
| 658 | ${KERNCONFDIR}/${_kernel} | |
| 659 | .endif | |
| 660 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
| 661 | ${MAKE} KERNEL=${INSTKERNNAME} all | |
| 662 | .endif | |
| 663 | @echo "--------------------------------------------------------------" | |
| 664 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
| 665 | @echo "--------------------------------------------------------------" | |
| 666 | .endfor | |
| 667 | ||
| 668 | ||
| 984263bc MD |
669 | # installkernel |
| 670 | # | |
| 671 | # Install the kernel defined by INSTALLKERNEL | |
| 672 | # | |
| 673 | installkernel reinstallkernel: | |
| 982b0507 MD |
674 | @echo "--------------------------------------------------------------" |
| 675 | @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`" | |
| 676 | @echo "--------------------------------------------------------------" | |
| 677 | .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run) | |
| 984263bc | 678 | cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ |
| 982b0507 | 679 | ${IMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//} |
| c2c83759 MD |
680 | .else |
| 681 | cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ | |
| 682 | ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//} | |
| 683 | .endif | |
| 984263bc MD |
684 | |
| 685 | # | |
| 984263bc MD |
686 | # most |
| 687 | # | |
| 688 | # Build most of the user binaries on the existing system libs and includes. | |
| 689 | # | |
| 690 | most: | |
| 691 | @echo "--------------------------------------------------------------" | |
| 692 | @echo ">>> Building programs only" | |
| 693 | @echo "--------------------------------------------------------------" | |
| 694 | .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin | |
| 695 | cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all | |
| 696 | .endfor | |
| 697 | ||
| 698 | # | |
| 699 | # installmost | |
| 700 | # | |
| 701 | # Install the binaries built by the 'most' target. This does not include | |
| 702 | # libraries or include files. | |
| 703 | # | |
| 704 | installmost: | |
| 705 | @echo "--------------------------------------------------------------" | |
| 706 | @echo ">>> Installing programs only" | |
| 707 | @echo "--------------------------------------------------------------" | |
| 708 | .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin | |
| 709 | cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install | |
| 710 | .endfor | |
| 711 | ||
| 712 | # | |
| 713 | # ------------------------------------------------------------------------ | |
| 714 | # | |
| 715 | # From here onwards are utility targets used by the 'make world' and | |
| 716 | # related targets. If your 'world' breaks, you may like to try to fix | |
| 717 | # the problem and manually run the following targets to attempt to | |
| 718 | # complete the build. Beware, this is *not* guaranteed to work, you | |
| 719 | # need to have a pretty good grip on the current state of the system | |
| 720 | # to attempt to manually finish it. If in doubt, 'make world' again. | |
| 721 | # | |
| 722 | ||
| 79aa78bc MD |
723 | # bootstrap-tools: Build all tools required to build all tools. Note that |
| 724 | # order is important in a number of cases and also note that the bootstrap | |
| 725 | # and build tools stages have access to earlier binaries they themselves | |
| 726 | # had generated. | |
| 984263bc | 727 | # |
| 79aa78bc MD |
728 | # patch: older patch's do not have -i. This program must be built |
| 729 | # first so other bootstrap tools that need to apply patches | |
| 730 | # can use it. | |
| 17030342 MD |
731 | # [x]install: dependancies on various new install features |
| 732 | # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH | |
| 733 | # envs are not compatible with older objformat binaries. | |
| 734 | # | |
| cecff5c1 | 735 | .if exists(${.CURDIR}/games) && !defined(NO_GAMES) |
| 984263bc MD |
736 | _strfile= games/fortune/strfile |
| 737 | .endif | |
| 738 | ||
| 739 | bootstrap-tools: | |
| 062db326 | 740 | ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date |
| 1397f94a | 741 | .for _tool in ${_strfile} \ |
| 1a7434d5 | 742 | usr.bin/patch \ |
| e2ea6619 | 743 | bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo bin/test \ |
| 11ba1493 | 744 | bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \ |
| b07b69cc | 745 | bin/hostname bin/kill \ |
| 1397f94a | 746 | usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \ |
| 1320c43d | 747 | usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \ |
| a96913f0 | 748 | usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \ |
| 1397f94a MD |
749 | usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \ |
| 750 | usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \ | |
| 751 | usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \ | |
| b07b69cc | 752 | usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \ |
| e909bba2 | 753 | usr.bin/cap_mkdb usr.bin/true usr.bin/false \ |
| c02263c2 | 754 | usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \ |
| b6ef15c2 | 755 | usr.bin/tail \ |
| 1397f94a | 756 | usr.sbin/chown usr.sbin/mtree usr.sbin/config \ |
| ed5d5720 | 757 | usr.sbin/btxld usr.sbin/zic usr.sbin/makewhatis \ |
| dea0b85a | 758 | gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \ |
| 32a7b49a | 759 | usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb |
| 1397f94a | 760 | ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \ |
| 984263bc MD |
761 | cd ${.CURDIR}/${_tool}; \ |
| 762 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
| 763 | ${MAKE} DIRPRFX=${_tool}/ depend; \ | |
| 764 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
| 1397f94a | 765 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install |
| 984263bc | 766 | .endfor |
| e05c8c84 | 767 | touch ${BTOOLSDEST}/.bootstrap_done |
| 984263bc | 768 | |
| bceb727e | 769 | # build-tools: Build special purpose build tools. |
| 984263bc | 770 | # |
| 1397f94a MD |
771 | # XXX we may be able to remove or consolidate this into bootstrap-tools |
| 772 | # now that we have the native helper (.nx/.no) infrastructure. | |
| 773 | # | |
| cecff5c1 | 774 | .if exists(${.CURDIR}/share) && !defined(NO_SHARE) |
| 984263bc MD |
775 | _share= share/syscons/scrnmaps |
| 776 | .endif | |
| 777 | ||
| ddf7cc86 SS |
778 | _gcc41_cross= gnu/usr.bin/cc41 |
| 779 | _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools | |
| d8280c36 | 780 | .if !defined(NO_GCC44) |
| 4f5ea479 SS |
781 | _gcc44_cross= gnu/usr.bin/cc44 |
| 782 | _gcc44_tools= gnu/usr.bin/cc44/cc_prep gnu/usr.bin/cc44/cc_tools | |
| d8280c36 | 783 | .endif |
| c97b9141 | 784 | _custom_cross= libexec/customcc |
| 929658e8 | 785 | _binutils= gnu/usr.bin/binutils217 |
| 17030342 | 786 | |
| 984263bc | 787 | build-tools: |
| 96c51b62 | 788 | .for _tool in ${_gcc41_tools} ${_gcc44_tools} ${_libkrb5} ${_share} |
| 1397f94a | 789 | ${ECHODIR} "===> ${_tool} (build-tools)"; \ |
| 984263bc MD |
790 | cd ${.CURDIR}/${_tool}; \ |
| 791 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
| 1397f94a MD |
792 | ${MAKE} DIRPRFX=${_tool}/ depend; \ |
| 793 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
| 794 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install | |
| 984263bc | 795 | .endfor |
| e05c8c84 | 796 | touch ${BTOOLSDEST}/.build_done |
| 984263bc MD |
797 | |
| 798 | # | |
| 799 | # cross-tools: Build cross-building tools | |
| 800 | # | |
| 984263bc MD |
801 | .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386" |
| 802 | _btxld= usr.sbin/btxld | |
| 803 | .endif | |
| 804 | ||
| 805 | cross-tools: | |
| da5b39ba | 806 | .for _tool in ${_btxld} ${_binutils} \ |
| 97c14704 | 807 | usr.bin/objformat \ |
| 96c51b62 | 808 | ${_gcc41_cross} ${_gcc44_cross} ${_custom_cross} |
| 1397f94a | 809 | ${ECHODIR} "===> ${_tool} (cross-tools)"; \ |
| 984263bc MD |
810 | cd ${.CURDIR}/${_tool}; \ |
| 811 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
| 812 | ${MAKE} DIRPRFX=${_tool}/ depend; \ | |
| 813 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
| 1397f94a | 814 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install |
| 984263bc | 815 | .endfor |
| e05c8c84 | 816 | touch ${CTOOLSDEST}/.cross_done |
| 984263bc MD |
817 | |
| 818 | # | |
| 819 | # hierarchy - ensure that all the needed directories are present | |
| 820 | # | |
| 821 | hierarchy: | |
| 822 | cd ${.CURDIR}/etc; ${MAKE} distrib-dirs | |
| 823 | ||
| 824 | # | |
| 825 | # libraries - build all libraries, and install them under ${DESTDIR}. | |
| 826 | # | |
| 827 | # The list of libraries with dependents (${_prebuild_libs}) and their | |
| 828 | # interdependencies (__L) are built automatically by the | |
| 829 | # ${.CURDIR}/tools/make_libdeps.sh script. | |
| 830 | # | |
| 5228fe46 MD |
831 | # .makeenv does not work when bootstrapping from 4.x, so we must be sure |
| 832 | # to specify the correct CCVER or 'cc' will not exec the correct compiler. | |
| 833 | # | |
| 984263bc | 834 | libraries: |
| ddf7cc86 SS |
835 | cd ${.CURDIR}; \ |
| 836 | HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \ | |
| 837 | ${MAKE} -f Makefile.inc1 _startup_libs41; | |
| d8280c36 | 838 | .if !defined(NO_GCC44) |
| 29d48e65 | 839 | cd ${.CURDIR}; \ |
| 4f5ea479 SS |
840 | HOST_CCVER=${HOST_CCVER} CCVER=gcc44 \ |
| 841 | ${MAKE} -f Makefile.inc1 _startup_libs44; | |
| d8280c36 | 842 | .endif |
| 4f5ea479 | 843 | cd ${.CURDIR}; \ |
| 984263bc MD |
844 | ${MAKE} -f Makefile.inc1 _startup_libs; \ |
| 845 | ${MAKE} -f Makefile.inc1 _prebuild_libs; \ | |
| 846 | ${MAKE} -f Makefile.inc1 _generic_libs; | |
| e05c8c84 | 847 | touch ${WORLDDEST}/.libraries_done |
| 984263bc MD |
848 | |
| 849 | # These dependencies are not automatically generated: | |
| 850 | # | |
| fd8b66cd | 851 | # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all |
| 4f5ea479 SS |
852 | # shared libraries for ELF. The target for _startup_libsXX is |
| 853 | # specifically built using gccXX. | |
| 984263bc | 854 | # |
| fd8b66cd | 855 | _startup_libs41= gnu/lib/gcc41/csu gnu/lib/gcc41/libgcc |
| 4f5ea479 | 856 | _startup_libs44= gnu/lib/gcc44/csu gnu/lib/gcc44/libgcc |
| e1da6819 | 857 | _startup_libs= lib/csu lib/libc lib/libc_rtld |
| 984263bc | 858 | |
| 50ef37d2 | 859 | _prebuild_libs= lib/libbz2 lib/libz |
| 0b153c05 | 860 | _prebuild_libs+= lib/libutil |
| 984263bc MD |
861 | |
| 862 | _generic_libs= gnu/lib | |
| 863 | ||
| 984263bc | 864 | _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \ |
| 7d1ab061 | 865 | lib/libncurses/libncurses lib/libopie lib/libradius \ |
| 48d67717 | 866 | lib/libsbuf lib/libtacplus lib/libm \ |
| 0d96fe5a | 867 | lib/libpam lib/libypclnt lib/lib${THREAD_LIB} |
| 984263bc MD |
868 | |
| 869 | lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L | |
| 984263bc MD |
870 | |
| 871 | _generic_libs+= lib | |
| 872 | ||
| cecff5c1 | 873 | .if !defined(NO_CRYPT) |
| 984263bc MD |
874 | .if !defined(NO_OPENSSL) |
| 875 | _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl | |
| 876 | .if !defined(NO_OPENSSH) | |
| 877 | _prebuild_libs+= secure/lib/libssh | |
| 878 | secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L | |
| 879 | .endif | |
| 880 | .endif | |
| 881 | _generic_libs+= secure/lib | |
| 882 | .endif | |
| 883 | ||
| 884 | _generic_libs+= usr.bin/lex/lib | |
| 885 | ||
| 96c51b62 | 886 | .for _lib in ${_startup_libs41} ${_startup_libs44} \ |
| 4db2a28c | 887 | ${_startup_libs} ${_prebuild_libs} ${_generic_libs} |
| 984263bc MD |
888 | ${_lib}__L: .PHONY |
| 889 | .if exists(${.CURDIR}/${_lib}) | |
| 890 | ${ECHODIR} "===> ${_lib}"; \ | |
| 891 | cd ${.CURDIR}/${_lib}; \ | |
| 892 | ${MAKE} DIRPRFX=${_lib}/ depend; \ | |
| 893 | ${MAKE} DIRPRFX=${_lib}/ all; \ | |
| 894 | ${MAKE} DIRPRFX=${_lib}/ install | |
| 895 | .endif | |
| 896 | .endfor | |
| 897 | ||
| 898 | _startup_libs: ${_startup_libs:S/$/__L/} | |
| ddf7cc86 | 899 | _startup_libs41: ${_startup_libs41:S/$/__L/} |
| 4f5ea479 | 900 | _startup_libs44: ${_startup_libs44:S/$/__L/} |
| 984263bc MD |
901 | _prebuild_libs: ${_prebuild_libs:S/$/__L/} |
| 902 | _generic_libs: ${_generic_libs:S/$/__L/} | |
| 903 | ||
| 1397f94a MD |
904 | # library targets must be ordered because there are inter-library |
| 905 | # races (e.g. generation of tconfig.h) | |
| 906 | # | |
| ddf7cc86 | 907 | .ORDER: ${_startup_libs41:S/$/__L/} |
| 4f5ea479 | 908 | .ORDER: ${_startup_libs44:S/$/__L/} |
| 1397f94a MD |
909 | .ORDER: ${_startup_libs:S/$/__L/} |
| 910 | .ORDER: ${_prebuild_libs:S/$/__L/} | |
| 911 | .ORDER: ${_generic_libs:S/$/__L/} | |
| 912 | ||
| 913 | .for __target in clean cleandepend cleandir obj depend includes | |
| 984263bc MD |
914 | .for entry in ${SUBDIR} |
| 915 | ${entry}.${__target}__D: .PHONY | |
| 916 | @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ | |
| 917 | ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ | |
| 918 | edir=${entry}.${MACHINE_ARCH}; \ | |
| 919 | cd ${.CURDIR}/$${edir}; \ | |
| 920 | else \ | |
| 921 | ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ | |
| 922 | edir=${entry}; \ | |
| 923 | cd ${.CURDIR}/$${edir}; \ | |
| 924 | fi; \ | |
| 925 | ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ | |
| 926 | .endfor | |
| 927 | par-${__target}: ${SUBDIR:S/$/.${__target}__D/} | |
| 1397f94a | 928 | .ORDER: ${SUBDIR:S/$/.${__target}__D/} |
| 984263bc | 929 | .endfor |
| 1397f94a | 930 | .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes |
| 984263bc | 931 | |
| cb0f1574 MD |
932 | # The wmake target is used by /usr/bin/wmake to run make in a |
| 933 | # world build environment. | |
| 934 | # | |
| 935 | wmake: | |
| 1397f94a | 936 | @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}' |
| cb0f1574 | 937 | |
| 5c7da0d7 MD |
938 | wmakeenv: |
| 939 | @echo '${WMAKEENV} /bin/sh' | |
| 940 | ||
| 1397f94a MD |
941 | bmake: |
| 942 | @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}' | |
| 943 | ||
| 17030342 MD |
944 | bmakeenv: |
| 945 | @echo '${BMAKEENV} /bin/sh' | |
| 946 | ||
| 1397f94a MD |
947 | tmake: |
| 948 | @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}' | |
| 949 | ||
| 17030342 MD |
950 | tmakeenv: |
| 951 | @echo '${TMAKEENV} /bin/sh' | |
| 952 | ||
| 66834c05 SS |
953 | xmake: |
| 954 | @echo '${XMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${XMAKE_ARGS}' | |
| 955 | ||
| 956 | xmakeenv: | |
| 957 | @echo '${XMAKEENV} /bin/sh' | |
| 958 | ||
| 984263bc | 959 | .include <bsd.subdir.mk> |
| cb0f1574 | 960 |