Readd ending '\' so it compiles the cross build tools
[dragonfly.git] / Makefile.inc1
1 #
2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
3 # $DragonFly: src/Makefile.inc1,v 1.19 2004/01/31 18:08:03 eirikn Exp $
4 #
5 # Make command line options:
6 #       -DMAKE_KERBEROS5 to build Kerberos5
7 #       -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
8 #       -DNOCLEAN do not clean at all
9 #       -DNOCRYPT will prevent building of crypt versions
10 #       -DNOMAN do not build the manual pages
11 #       -DNOPROFILE do not build profiled libraries
12 #       -DNOGAMES do not go into games subdir
13 #       -DNOSHARE do not go into share subdir
14 #       -DNOINFO do not make or install info files
15 #       -DNOLIBC_R do not build libc_r.
16 #       -DNO_FORTRAN do not build g77 and related libraries.
17 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
18 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
19 #       -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
20 #       -DNO_PORTSUPDATE do not update ports in ${MAKE} update
21 #       -DNO_DOCUPDATE do not update doc in ${MAKE} update
22 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
23 #       TARGET_ARCH="arch" to crossbuild world to a different arch
24
25 #
26 # The intended user-driven targets are:
27 # buildworld  - rebuild *everything*, including glue to help do upgrades
28 # installworld- install everything built by "buildworld"
29 # update      - convenient way to update your source tree (eg: sup/cvs)
30 # most        - build user commands, no libraries or include files
31 # installmost - install user commands, no libraries or include files
32 #
33 # Standard targets (not defined here) are documented in the makefiles in
34 # /usr/share/mk.  These include:
35 #               obj depend all install clean cleandepend cleanobj
36
37 # Put initial settings here.
38 SUBDIR=
39
40 # We must do share/info early so that installation of info `dir'
41 # entries works correctly.  Do it first since it is less likely to
42 # grow dependencies on include and lib than vice versa.
43 .if exists(${.CURDIR}/share/info)
44 SUBDIR+= share/info
45 .endif
46
47 # We must do include and lib early so that the perl *.ph generation
48 # works correctly as it uses the header files installed by this.
49 .if exists(${.CURDIR}/include)
50 SUBDIR+= include
51 .endif
52 .if exists(${.CURDIR}/lib)
53 SUBDIR+= lib
54 .endif
55 # This exists simply to ensure that the obj dir hierarchy is
56 # intact for nrelease, allowing the nrelease Makefile's to 
57 # reference ${.OBJDIR}.
58 #
59 .if exists(${.CURDIR}/nrelease)
60 SUBDIR+= nrelease
61 .endif
62
63 .if exists(${.CURDIR}/bin)
64 SUBDIR+= bin
65 .endif
66 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
67 SUBDIR+= games
68 .endif
69 .if exists(${.CURDIR}/gnu)
70 SUBDIR+= gnu
71 .endif
72 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
73     !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS5)
74 SUBDIR+= kerberos5
75 .endif
76 .if exists(${.CURDIR}/libexec)
77 SUBDIR+= libexec
78 .endif
79 .if exists(${.CURDIR}/sbin)
80 SUBDIR+= sbin
81 .endif
82 .if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
83 SUBDIR+= secure
84 .endif
85 .if exists(${.CURDIR}/share) && !defined(NOSHARE)
86 SUBDIR+= share
87 .endif
88 .if exists(${.CURDIR}/sys)
89 SUBDIR+= sys
90 .endif
91 .if exists(${.CURDIR}/usr.bin)
92 SUBDIR+= usr.bin
93 .endif
94 .if exists(${.CURDIR}/usr.sbin)
95 SUBDIR+= usr.sbin
96 .endif
97
98 # etc must be last for "distribute" to work
99 .if exists(${.CURDIR}/etc)
100 SUBDIR+= etc
101 .endif
102
103 # These are last, since it is nice to at least get the base system
104 # rebuilt before you do them.
105 .if defined(LOCAL_DIRS)
106 .for _DIR in ${LOCAL_DIRS}
107 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
108 SUBDIR+= ${_DIR}
109 .endif
110 .endfor
111 .endif
112
113 .if defined(SUBDIR_OVERRIDE)
114 SUBDIR=         ${SUBDIR_OVERRIDE}
115 .endif
116
117 .if defined(NOCLEANDIR)
118 CLEANDIR=       clean cleandepend
119 .else
120 CLEANDIR=       cleandir
121 .endif
122
123 SUP?=           /usr/local/bin/cvsup
124 SUPFLAGS?=      -g -L 2 -P -
125 .if defined(SUPHOST)
126 SUPFLAGS+=      -h ${SUPHOST}
127 .endif
128
129 MAKEOBJDIRPREFIX?=      /usr/obj
130 TARGET_ARCH?=   ${MACHINE_ARCH}
131 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
132 TARGET?=        ${MACHINE}
133 .else
134 TARGET?=        ${TARGET_ARCH}
135 .endif
136 .if make(buildworld)
137 BUILD_ARCH!=    sysctl -n hw.machine_arch
138 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
139 .error To cross-build, set TARGET_ARCH.
140 .endif
141 .endif
142 .if ${MACHINE} == ${TARGET}
143 OBJTREE=        ${MAKEOBJDIRPREFIX}
144 .else
145 OBJTREE=        ${MAKEOBJDIRPREFIX}/${TARGET}
146 .endif
147 WORLDTMP=       ${OBJTREE}${.CURDIR}/${MACHINE_ARCH}
148 # /usr/games added for fortune which depend on strfile
149 STRICTTMPPATH=  ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
150 TMPPATH=        ${STRICTTMPPATH}:${PATH}
151
152 TMPDIR?=        /tmp
153 TMPPID!=        echo $$$$
154 INSTALLTMP=     ${TMPDIR}/install.${TMPPID}
155
156 #
157 # Building a world goes through the following stages
158 #
159 # 1. bootstrap-tool stage [BMAKE]
160 #       This stage is responsible for creating programs that
161 #       are needed for backward compatibility reasons. They
162 #       are not built as cross-tools.
163 # 2. build-tool stage [TMAKE]
164 #       This stage is responsible for creating the object
165 #       tree and building any tools that are needed during
166 #       the build process.
167 # 3. cross-tool stage [XMAKE]
168 #       This stage is responsible for creating any tools that
169 #       are needed for cross-builds. A cross-compiler is one
170 #       of them.
171 # 4. world stage [WMAKE]
172 #       This stage actually builds the world.
173 # 5. install stage (optional) [IMAKE]
174 #       This stage installs a previously built world.
175 #
176
177 # Common environment for world related stages
178 CROSSENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
179                 MACHINE_ARCH=${TARGET_ARCH} \
180                 MACHINE=${TARGET} \
181                 OBJFORMAT_PATH=${WORLDTMP} \
182                 PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.00503 \
183                 GROFF_BIN_PATH=${WORLDTMP}/usr/bin \
184                 GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \
185                 GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac
186
187 # bootstrap-tool stage
188 BMAKEENV=       MAKEOBJDIRPREFIX=${WORLDTMP} \
189                 DESTDIR= \
190                 INSTALL="sh ${.CURDIR}/tools/install.sh"
191 BMAKE=          ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
192                 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
193                 -DNO_WERROR
194
195 # build-tool stage
196 TMAKEENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
197                 DESTDIR= \
198                 INSTALL="sh ${.CURDIR}/tools/install.sh"
199 TMAKE=          ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING
200
201 # cross-tool stage
202 XMAKE=          TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
203
204 # world stage
205 WMAKEENV=       ${CROSSENV} \
206                 DESTDIR=${WORLDTMP} \
207                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
208                 PATH=${TMPPATH}
209 WMAKE=          ${WMAKEENV} ${MAKE} -f Makefile.inc1
210
211 # install stage
212 IMAKEENV=       ${CROSSENV} \
213                 PATH=${STRICTTMPPATH}:${INSTALLTMP}
214 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1
215
216 # kernel stage
217 KMAKEENV=       ${WMAKEENV} \
218                 OBJFORMAT_PATH=${WORLDTMP}:${OBJFORMAT_PATH}
219
220 USRDIRS=        usr/bin usr/bin/gcc2 usr/bin/gcc3 \
221                 usr/lib/gcc2 usr/lib/gcc3 \
222                 usr/lib/compat/aout usr/games \
223                 usr/libdata/gcc2 usr/libdata/gcc2/ldscripts \
224                 usr/libdata/gcc3 usr/libdata/gcc3/ldscripts \
225                 usr/libexec/gcc3 \
226                 usr/libexec/binutils212/ \
227                 usr/libexec/binutils212/elf \
228                 usr/libexec/binutils212/aout \
229                 usr/sbin usr/share/misc \
230                 usr/share/dict \
231                 usr/share/groff_font/devX100 \
232                 usr/share/groff_font/devX100-12 \
233                 usr/share/groff_font/devX75 \
234                 usr/share/groff_font/devX75-12 \
235                 usr/share/groff_font/devascii \
236                 usr/share/groff_font/devcp1047 \
237                 usr/share/groff_font/devdvi \
238                 usr/share/groff_font/devhtml \
239                 usr/share/groff_font/devkoi8-r \
240                 usr/share/groff_font/devlatin1 \
241                 usr/share/groff_font/devlbp \
242                 usr/share/groff_font/devlj4 \
243                 usr/share/groff_font/devps \
244                 usr/share/groff_font/devutf8 \
245                 usr/share/tmac/mdoc usr/share/tmac/mm
246
247 # XXX remove in favor of the BSD.include.dist mtree that we already have.
248 #
249 INCDIRS=        arpa dev c++/2.95 isc libmilter objc openssl \
250                 protocols readline rpc rpcsvc security
251
252 #
253 # buildworld
254 #
255 # Attempt to rebuild the entire system, with reasonable chance of
256 # success, regardless of how old your existing system is.
257 #
258 _worldtmp:
259         @echo
260         @echo "--------------------------------------------------------------"
261         @echo ">>> Rebuilding the temporary build tree"
262         @echo "--------------------------------------------------------------"
263 .if !defined(NOCLEAN)
264         rm -rf ${WORLDTMP}
265 .else
266         # XXX - These two can depend on any header file.
267         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
268         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
269 .endif
270 .for _dir in ${USRDIRS}
271         mkdir -p ${WORLDTMP}/${_dir}
272 .endfor
273 .for _dir in ${INCDIRS}
274         mkdir -p ${WORLDTMP}/usr/include/${_dir}
275 .endfor
276         ln -sf ${.CURDIR}/sys ${WORLDTMP}
277 _bootstrap-tools:
278         @echo
279         @echo "--------------------------------------------------------------"
280         @echo ">>> stage 1: bootstrap tools"
281         @echo "--------------------------------------------------------------"
282         cd ${.CURDIR}; ${BMAKE} bootstrap-tools
283 _cleanobj:
284 .if !defined(NOCLEAN)
285         @echo
286         @echo "--------------------------------------------------------------"
287         @echo ">>> stage 2: cleaning up the object tree"
288         @echo "--------------------------------------------------------------"
289         cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
290 .endif
291 _obj:
292         @echo
293         @echo "--------------------------------------------------------------"
294         @echo ">>> stage 2: rebuilding the object tree"
295         @echo "--------------------------------------------------------------"
296         cd ${.CURDIR}; ${WMAKE} par-obj
297 _build-tools:
298         @echo
299         @echo "--------------------------------------------------------------"
300         @echo ">>> stage 2: build tools"
301         @echo "--------------------------------------------------------------"
302         cd ${.CURDIR}; ${TMAKE} build-tools
303 _cross-tools:
304         @echo
305         @echo "--------------------------------------------------------------"
306         @echo ">>> stage 3: cross tools"
307         @echo "--------------------------------------------------------------"
308         cd ${.CURDIR}; ${XMAKE} cross-tools
309 _includes:
310         @echo
311         @echo "--------------------------------------------------------------"
312         @echo ">>> stage 4: populating ${WORLDTMP}/usr/include"
313         @echo "--------------------------------------------------------------"
314         cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
315 _libraries:
316         @echo
317         @echo "--------------------------------------------------------------"
318         @echo ">>> stage 4: building libraries"
319         @echo "--------------------------------------------------------------"
320         cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
321 _depend:
322         @echo
323         @echo "--------------------------------------------------------------"
324         @echo ">>> stage 4: make dependencies"
325         @echo "--------------------------------------------------------------"
326         cd ${.CURDIR}; ${WMAKE} par-depend
327 everything:
328         @echo
329         @echo "--------------------------------------------------------------"
330         @echo ">>> stage 4: building everything.."
331         @echo "--------------------------------------------------------------"
332         cd ${.CURDIR}; ${WMAKE} all
333
334
335 WMAKE_TGTS=
336 .if !defined(SUBDIR_OVERRIDE)
337 WMAKE_TGTS+=    _worldtmp _bootstrap-tools
338 .endif
339 WMAKE_TGTS+=    _cleanobj _obj _build-tools
340 .if !defined(SUBDIR_OVERRIDE)
341 WMAKE_TGTS+=    _cross-tools
342 .endif
343 WMAKE_TGTS+=    _includes _libraries _depend everything
344
345 buildworld: ${WMAKE_TGTS}
346 .ORDER: ${WMAKE_TGTS}
347
348 #
349 # installcheck
350 #
351 # Checks to be sure system is ready for installworld
352 #
353 installcheck:
354 .if !defined(NO_SENDMAIL)
355         @if ! `id -u smmsp > /dev/null`; then \
356                 echo "ERROR: Required smmsp user is missing, see /usr/src/UPDATING."; \
357                 false; \
358         fi
359         @if ! `id -g smmsp > /dev/null`; then \
360                 echo "ERROR: Required smmsp group is missing, see /usr/src/UPDATING."; \
361                 false; \
362         fi
363 .endif
364
365 #
366 # distributeworld
367 #
368 # Distributes everything compiled by a `buildworld'.
369 #
370 # installworld
371 #
372 # Installs everything compiled by a 'buildworld'.
373 #
374 distributeworld installworld: installcheck
375         mkdir -p ${INSTALLTMP}
376         for prog in [ awk cap_mkdb cat chflags chmod chown \
377             date echo egrep find grep \
378             ln make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh sysctl \
379             test true uname wc zic; do \
380                 cp `which $$prog` ${INSTALLTMP}; \
381         done
382         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
383         rm -rf ${INSTALLTMP}
384
385 #
386 # reinstall
387 #
388 # If you have a build server, you can NFS mount the source and obj directories
389 # and do a 'make reinstall' on the *client* to install new binaries from the
390 # most recent server build.
391 #
392 reinstall:
393         @echo "--------------------------------------------------------------"
394         @echo ">>> Making hierarchy"
395         @echo "--------------------------------------------------------------"
396         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
397         @echo
398         @echo "--------------------------------------------------------------"
399         @echo ">>> Installing everything.."
400         @echo "--------------------------------------------------------------"
401         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
402 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
403         @echo
404         @echo "--------------------------------------------------------------"
405         @echo ">>> Rebuilding man page indices"
406         @echo "--------------------------------------------------------------"
407         cd ${.CURDIR}/share/man; ${MAKE} makedb
408 .endif
409
410 redistribute:
411         @echo "--------------------------------------------------------------"
412         @echo ">>> Distributing everything.."
413         @echo "--------------------------------------------------------------"
414         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
415
416 #
417 # buildkernel and installkernel
418 #
419 # Which kernels to build and/or install is specified by setting
420 # KERNCONF. If not defined a GENERIC kernel is built/installed.
421 # Only the existing (depending TARGET) config files are used
422 # for building kernels and only the first of these is designated
423 # as the one being installed.
424 #
425 # Note that we have to use TARGET instead of TARGET_ARCH when
426 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
427 # be set to cross-build, we have to make sure TARGET is set
428 # properly.
429
430 .if !defined(KERNCONF) && defined(KERNEL)
431 KERNCONF=       ${KERNEL}
432 KERNWARN=       yes
433 .else
434 KERNCONF?=      GENERIC
435 .endif
436 INSTKERNNAME?=  kernel
437
438 KRNLSRCDIR=     ${.CURDIR}/sys
439 KRNLCONFDIR=    ${KRNLSRCDIR}/${TARGET}/conf
440 KRNLOBJDIR=     ${OBJTREE}${KRNLSRCDIR}
441 KERNCONFDIR?=   ${KRNLCONFDIR}
442
443 BUILDKERNELS=
444 INSTALLKERNEL=
445 .for _kernel in ${KERNCONF}
446 .if exists(${KERNCONFDIR}/${_kernel})
447 BUILDKERNELS+=  ${_kernel}
448 .if empty(INSTALLKERNEL)
449 INSTALLKERNEL= ${_kernel}
450 .endif
451 .endif
452 .endfor
453
454 #
455 # buildkernel
456 #
457 # Builds all kernels defined by BUILDKERNELS.
458 #
459 buildkernel:
460 .if empty(BUILDKERNELS)
461         @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
462         @false
463 .endif
464 .if defined(KERNWARN)
465         @echo "--------------------------------------------------------------"
466         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
467         @echo "--------------------------------------------------------------"
468         @sleep 3
469 .endif
470         @echo
471 .for _kernel in ${BUILDKERNELS}
472         @echo "--------------------------------------------------------------"
473         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
474         @echo "--------------------------------------------------------------"
475         @echo "===> ${_kernel}"
476         mkdir -p ${KRNLOBJDIR}
477 .if !defined(NO_KERNELCONFIG)
478         cd ${KRNLCONFDIR}; \
479                 PATH=${TMPPATH} \
480                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
481                         ${KERNCONFDIR}/${_kernel}
482 .endif
483 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
484         cd ${KRNLOBJDIR}/${_kernel}; \
485             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} -DNO_MODULES clean
486 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KRNLSRCDIR}/modules)
487         cd ${KRNLOBJDIR}/${_kernel}; \
488             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} cleandir
489 .endif
490 .endif
491         cd ${KRNLOBJDIR}/${_kernel}; \
492             MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
493             ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
494 .if !defined(NO_KERNELDEPEND)
495         cd ${KRNLOBJDIR}/${_kernel}; \
496             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
497 .endif
498         cd ${KRNLOBJDIR}/${_kernel}; \
499             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
500         @echo "--------------------------------------------------------------"
501         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
502         @echo "--------------------------------------------------------------"
503 .endfor
504
505 #
506 # installkernel
507 #
508 # Install the kernel defined by INSTALLKERNEL
509 #
510 installkernel reinstallkernel:
511         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
512             ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
513
514 #
515 # update
516 #
517 # Update the source tree, by running sup and/or running cvs to update to the
518 # latest copy.
519 #
520 update:
521 .if defined(SUP_UPDATE)
522         @echo "--------------------------------------------------------------"
523         @echo ">>> Running ${SUP}"
524         @echo "--------------------------------------------------------------"
525 .if defined(SUPFILE)
526         @${SUP} ${SUPFLAGS} ${SUPFILE}
527 .endif
528 .if defined(SUPFILE1)
529         @${SUP} ${SUPFLAGS} ${SUPFILE1}
530 .endif
531 .if defined(SUPFILE2)
532         @${SUP} ${SUPFLAGS} ${SUPFILE2}
533 .endif
534 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
535         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
536 .endif
537 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
538         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
539 .endif
540 .endif
541 .if defined(CVS_UPDATE)
542         @echo "--------------------------------------------------------------"
543         @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
544         @echo "--------------------------------------------------------------"
545         cd ${.CURDIR}; cvs -q update -rRELENG_4 -P -d
546 .endif
547
548 #
549 # most
550 #
551 # Build most of the user binaries on the existing system libs and includes.
552 #
553 most:
554         @echo "--------------------------------------------------------------"
555         @echo ">>> Building programs only"
556         @echo "--------------------------------------------------------------"
557 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
558         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ all
559 .endfor
560
561 #
562 # installmost
563 #
564 # Install the binaries built by the 'most' target.  This does not include
565 # libraries or include files.
566 #
567 installmost:
568         @echo "--------------------------------------------------------------"
569         @echo ">>> Installing programs only"
570         @echo "--------------------------------------------------------------"
571 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
572         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ install
573 .endfor
574
575 #
576 # ------------------------------------------------------------------------
577 #
578 # From here onwards are utility targets used by the 'make world' and
579 # related targets.  If your 'world' breaks, you may like to try to fix
580 # the problem and manually run the following targets to attempt to
581 # complete the build.  Beware, this is *not* guaranteed to work, you
582 # need to have a pretty good grip on the current state of the system
583 # to attempt to manually finish it.  If in doubt, 'make world' again.
584 #
585
586 #
587 # bootstrap-tools: Build tools needed for compatibility
588 #
589 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
590 _strfile=       games/fortune/strfile
591 .endif
592
593 bootstrap-tools:
594 .for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \
595     usr.bin/uudecode usr.bin/xinstall \
596     usr.sbin/config \
597     gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
598         ${ECHODIR} "===> ${_tool}"; \
599                 cd ${.CURDIR}/${_tool}; \
600                 ${MAKE} DIRPRFX=${_tool}/ obj; \
601                 ${MAKE} DIRPRFX=${_tool}/ depend; \
602                 ${MAKE} DIRPRFX=${_tool}/ all; \
603                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
604 .endfor
605
606 #
607 # build-tools: Build special purpose build tools
608 #
609 .if exists(${.CURDIR}/games) && !defined(NOGAMES)
610 _games= games/adventure games/hack games/phantasia
611 .endif
612
613 .if exists(${.CURDIR}/share) && !defined(NOSHARE)
614 _share= share/syscons/scrnmaps
615 .endif
616
617 .if !defined(NO_FORTRAN)
618 _fortran= gnu/usr.bin/cc/f771
619 .endif
620
621 .if !defined(NOPERL)
622 _perl=  gnu/usr.bin/perl/miniperl
623 .endif
624
625 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
626     !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
627 _libkrb5= kerberos5/lib/libroken kerberos5/lib/libvers \
628     kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
629 .endif
630
631 .if defined(RELEASEDIR)
632 _sysinstall= release/sysinstall
633 .endif
634
635 build-tools:
636 .for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools \
637     gnu/usr.bin/cc3/cc_tools ${_fortran} \
638     ${_perl} ${_libroken4} ${_libkrb5} lib/libncurses ${_share} \
639     usr.bin/awk usr.bin/file ${_sysinstall}
640         ${ECHODIR} "===> ${_tool}"; \
641                 cd ${.CURDIR}/${_tool}; \
642                 ${MAKE} DIRPRFX=${_tool}/ obj; \
643                 ${MAKE} DIRPRFX=${_tool}/ build-tools
644 .endfor
645
646 #
647 # cross-tools: Build cross-building tools
648 #
649 .if ${TARGET_ARCH} == "alpha" && ${MACHINE_ARCH} != "alpha"
650 _elf2exe=       usr.sbin/elf2exe
651 .endif
652
653 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
654 _btxld= usr.sbin/btxld
655 .endif
656
657 cross-tools:
658 .for _tool in ${_btxld} ${_elf2exe} \
659     gnu/usr.bin/binutils usr.bin/objformat usr.sbin/crunch/crunchide \
660     gnu/usr.bin/cc gnu/usr.bin/cc3
661         ${ECHODIR} "===> ${_tool}"; \
662                 cd ${.CURDIR}/${_tool}; \
663                 ${MAKE} DIRPRFX=${_tool}/ obj; \
664                 ${MAKE} DIRPRFX=${_tool}/ depend; \
665                 ${MAKE} DIRPRFX=${_tool}/ all; \
666                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
667 .endfor
668
669 #
670 # hierarchy - ensure that all the needed directories are present
671 #
672 hierarchy:
673         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
674
675 #
676 # libraries - build all libraries, and install them under ${DESTDIR}.
677 #
678 # The list of libraries with dependents (${_prebuild_libs}) and their
679 # interdependencies (__L) are built automatically by the
680 # ${.CURDIR}/tools/make_libdeps.sh script.
681 #
682 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
683 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
684 #
685 libraries:
686         cd ${.CURDIR}; \
687             CCVER=gcc2 ${MAKE} -f Makefile.inc1 _startup_libs2; \
688             CCVER=gcc3 ${MAKE} -f Makefile.inc1 _startup_libs3; \
689             ${MAKE} -f Makefile.inc1 _startup_libs; \
690             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
691             ${MAKE} -f Makefile.inc1 _generic_libs;
692
693 # These dependencies are not automatically generated:
694 #
695 # gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
696 # shared libraries for ELF.  The targets for _startup_libs{2,3} are
697 # specifically built using gcc{2,3}.
698 #
699 _startup_libs2= gnu/lib/gcc2/csu gnu/lib/gcc2/libgcc
700 _startup_libs3= gnu/lib/gcc3/csu gnu/lib/gcc3/libgcc
701 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT})
702 _startup_libs=  lib/csu/${MACHINE_ARCH}-${OBJFORMAT}
703 .else
704 _startup_libs=  lib/csu/${MACHINE_ARCH}
705 .endif
706
707 _prebuild_libs=
708
709 _generic_libs=  gnu/lib
710
711 .if !defined(NOPERL)
712 _generic_libs+= gnu/usr.bin/perl/libperl
713 .endif
714
715 .if !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
716 _prebuild_libs+=        kerberos5/lib/libasn1
717 _prebuild_libs+=        kerberos5/lib/libgssapi
718 _prebuild_libs+=        kerberos5/lib/libkrb5
719 _prebuild_libs+=        kerberos5/lib/libroken
720 _generic_libs+= kerberos5/lib
721 .endif
722
723 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
724                 lib/libncurses lib/libopie lib/libradius lib/libskey \
725                 lib/libtacplus lib/libutil \
726                 lib/libz lib/msun
727
728 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
729 lib/libskey__L: lib/libcrypt__L lib/libmd__L
730
731 _generic_libs+= lib
732
733 .if !defined(NOCRYPT)
734 .if !defined(NO_OPENSSL)
735 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
736 .if !defined(NO_OPENSSH)
737 _prebuild_libs+=        secure/lib/libssh
738 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
739 .endif
740 .endif
741 _generic_libs+= secure/lib
742 .endif
743
744 _generic_libs+= usr.bin/lex/lib
745
746 .if ${MACHINE_ARCH} == "i386"
747 _generic_libs+= usr.sbin/pcvt/keycap
748 .endif
749
750 .for _lib in ${_startup_libs2} ${_startup_libs3} ${_startup_libs} \
751                 ${_prebuild_libs} ${_generic_libs}
752 ${_lib}__L: .PHONY
753 .if exists(${.CURDIR}/${_lib})
754         ${ECHODIR} "===> ${_lib}"; \
755                 cd ${.CURDIR}/${_lib}; \
756                 ${MAKE} DIRPRFX=${_lib}/ depend; \
757                 ${MAKE} DIRPRFX=${_lib}/ all; \
758                 ${MAKE} DIRPRFX=${_lib}/ install
759 .endif
760 .endfor
761
762 _startup_libs: ${_startup_libs:S/$/__L/}
763 _startup_libs2: ${_startup_libs2:S/$/__L/}
764 _startup_libs3: ${_startup_libs3:S/$/__L/}
765 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
766 _generic_libs: ${_generic_libs:S/$/__L/}
767
768 .for __target in clean cleandepend cleandir depend includes obj
769 .for entry in ${SUBDIR}
770 ${entry}.${__target}__D: .PHONY
771         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
772                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
773                 edir=${entry}.${MACHINE_ARCH}; \
774                 cd ${.CURDIR}/$${edir}; \
775         else \
776                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
777                 edir=${entry}; \
778                 cd ${.CURDIR}/$${edir}; \
779         fi; \
780         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
781 .endfor
782 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
783 .endfor
784
785 # The wmake target is used by /usr/bin/wmake to run make in a
786 # world build environment.
787 #
788 wmake:
789         @echo '${WMAKEENV} ${MAKE} ${WMAKE_ARGS}'
790
791 wmakeenv:
792         @echo '${WMAKEENV} /bin/sh'
793
794 .include <bsd.subdir.mk>
795