Home | History | Annotate | Line # | Download | only in src
Makefile revision 1.184
      1 #	$NetBSD: Makefile,v 1.184 2002/08/26 04:40:20 lukem Exp $
      2 
      3 # This is the top-level makefile for building NetBSD. For an outline of
      4 # how to build a snapshot or release, as well as other release engineering
      5 # information, see http://www.netbsd.org/developers/releng/index.html
      6 #
      7 # Not everything you can set or do is documented in this makefile. In
      8 # particular, you should review the files in /usr/share/mk (especially
      9 # bsd.README) for general information on building programs and writing
     10 # Makefiles within this structure, and see the comments in src/etc/Makefile
     11 # for further information on installation and release set options.
     12 #
     13 # Variables listed below can be set on the make command line (highest
     14 # priority), in /etc/mk.conf (middle priority), or in the environment
     15 # (lowest priority).
     16 #
     17 # Variables:
     18 #   DESTDIR is the target directory for installation of the compiled
     19 #	software. It defaults to /. Note that programs are built against
     20 #	libraries installed in DESTDIR.
     21 #   MKMAN, if set to `no', will prevent building of manual pages.
     22 #   MKOBJDIRS, if not set to `no', will build object directories at
     23 #	an appropriate point in a build.
     24 #   MKSHARE, if set to `no', will prevent building and installing
     25 #	anything in /usr/share.
     26 #   UPDATE, if defined, will avoid a `make cleandir' at the start of
     27 #	`make build', as well as having the effects listed in
     28 #	/usr/share/mk/bsd.README.
     29 #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
     30 #	of the `make build'.
     31 #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
     32 #
     33 # Targets:
     34 #   build:
     35 #	Builds a full release of NetBSD in DESTDIR.  If BUILD_DONE is
     36 #	set, this is an empty target.
     37 #   release:
     38 #	Does a `make build,' and then tars up the DESTDIR files
     39 #	into RELEASEDIR, in release(7) format. (See etc/Makefile for
     40 #	more information on this.)
     41 #   regression-tests:
     42 #	Runs the regression tests in "regress" on this host.
     43 #
     44 # Targets invoked by `make build,' in order:
     45 #   cleandir:        cleans the tree.
     46 #   obj:             creates object directories.
     47 #   do-tools:        builds host toolchain.
     48 #   do-distrib-dirs: creates the distribution directories.
     49 #   includes:        installs include files.
     50 #   do-lib-csu:      builds and installs prerequisites from lib/csu.
     51 #   do-lib:          builds and installs prerequisites from lib.
     52 #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
     53 #   do-ld.elf_so:    builds and installs prerequisites from libexec/ld.elf_so
     54 #   do-build:        builds and installs the entire system.
     55 
     56 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
     57 .MAKEFLAGS: -m ${.CURDIR}/share/mk
     58 .endif
     59 
     60 # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
     61 # not be the top level objdir, because "make obj" can happen in the *middle*
     62 # of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
     63 # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
     64 _SRC_TOP_OBJ_=
     65 
     66 .include <bsd.own.mk>
     67 
     68 # Sanity check: make sure that "make build" is not invoked simultaneously
     69 # with a standard recursive target.
     70 
     71 .if make(build) || make(release) || make(snapshot)
     72 .for targ in ${TARGETS:Nobj:Ncleandir}
     73 .if make(${targ}) && !target(.BEGIN)
     74 .BEGIN:
     75 	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
     76 	@false
     77 .endif
     78 .endfor
     79 .endif
     80 
     81 _SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
     82 _SUBDIR+=	usr.sbin share rescue sys etc distrib regress
     83 
     84 # Weed out directories that don't exist.
     85 
     86 .for dir in ${_SUBDIR}
     87 .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
     88 SUBDIR+=	${dir}
     89 .endif
     90 .endfor
     91 
     92 .if exists(regress)
     93 regression-tests:
     94 	@echo Running regression tests...
     95 	@(cd ${.CURDIR}/regress && ${MAKE} regress)
     96 .endif
     97 
     98 .if defined(UNPRIVED)
     99 NOPOSTINSTALL=	# defined
    100 .endif
    101 
    102 afterinstall:
    103 .if ${MKMAN} != "no"
    104 	(cd ${.CURDIR}/share/man && ${MAKE} makedb)
    105 .endif
    106 .if defined(UNPRIVED) && (${MKINFO} != "no")
    107 	(cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
    108 .endif
    109 .if !defined(NOPOSTINSTALL)
    110 	(cd ${.CURDIR} && ${MAKE} postinstall-check)
    111 .endif
    112 
    113 postinstall-check:
    114 	@echo "   === Post installation checks ==="
    115 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
    116 	@echo "   ================================"
    117 
    118 postinstall-fix: .NOTMAIN
    119 	@echo "   === Post installation fixes ==="
    120 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
    121 	@echo "   ================================"
    122 
    123 
    124 # Targets (in order!) called by "make build".
    125 
    126 BUILDTARGETS+=	check-tools
    127 .if !defined(UPDATE) && !defined(NOCLEANDIR)
    128 BUILDTARGETS+=	cleandir
    129 .endif
    130 .if ${MKOBJDIRS} != "no"
    131 BUILDTARGETS+=	obj
    132 .endif
    133 .if ${USETOOLS} == "yes"
    134 BUILDTARGETS+=	do-tools
    135 .endif
    136 .if !defined(NODISTRIBDIRS)
    137 BUILDTARGETS+=	do-distrib-dirs
    138 .endif
    139 .if !defined(NOINCLUDES)
    140 BUILDTARGETS+=	includes
    141 .endif
    142 BUILDTARGETS+=	do-lib-csu do-lib do-gnu-lib do-ld.elf_so do-build
    143 
    144 # Enforce proper ordering of some rules.
    145 
    146 .ORDER:		${BUILDTARGETS}
    147 includes-lib:	includes-include includes-sys
    148 includes-gnu:	includes-lib
    149 
    150 # Build the system and install into DESTDIR.
    151 
    152 build:
    153 .if defined(BUILD_DONE)
    154 	@echo "Build already installed into ${DESTDIR}"
    155 .else
    156 	@printf "Build started at: " && date
    157 .for tgt in ${BUILDTARGETS}
    158 	@(cd ${.CURDIR} && ${MAKE} ${tgt})
    159 .endfor
    160 	@printf "Build finished at: " && date
    161 .endif
    162 
    163 # Build a full distribution, but not a release (i.e. no sets into
    164 # ${RELEASEDIR}).
    165 
    166 distribution:
    167 	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    168 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
    169 .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
    170 	(cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
    171 .endif
    172 
    173 # Build a release or snapshot (implies "make build").  Note that
    174 # in this case, the set lists will be checked before the tar files
    175 # are made.
    176 
    177 release snapshot:
    178 	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    179 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
    180 
    181 # Special components of the "make build" process.
    182 
    183 check-tools:
    184 .if defined(USE_NEW_TOOLCHAIN) && (${USE_NEW_TOOLCHAIN} != "nowarn")
    185 	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with USE_NEW_TOOLCHAIN.'
    186 	@echo '*** This platform is not yet verified to work with the new toolchain,'
    187 	@echo '*** and may result in a failed build or corrupt binaries!'
    188 .endif
    189 .if defined(NBUILDJOBS)
    190 	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
    191 .endif
    192 
    193 do-distrib-dirs:
    194 .if !defined(DESTDIR) || ${DESTDIR} == ""
    195 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
    196 .else
    197 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
    198 .endif
    199 
    200 .for dir in tools lib/csu lib gnu/lib
    201 do-${dir:S/\//-/}:
    202 .for targ in dependall install
    203 	(cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
    204 .endfor
    205 .endfor
    206 
    207 do-ld.elf_so:
    208 .for targ in dependall install
    209 	(cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ})
    210 .endfor
    211 
    212 do-build:
    213 .for targ in dependall install
    214 	(cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
    215 .endfor
    216 
    217 # Speedup stubs for some subtrees that don't need to run these rules.
    218 # (Tells <bsd.subdir.mk> not to recurse for them.)
    219 
    220 .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
    221 includes-${dir}:
    222 	@true
    223 .endfor
    224 .for dir in etc distrib regress
    225 install-${dir}:
    226 	@true
    227 .endfor
    228 
    229 # XXX this needs to change when distrib Makefiles are recursion compliant
    230 dependall-distrib depend-distrib all-distrib:
    231 	@true
    232 
    233 .include <bsd.obj.mk>
    234 .include <bsd.subdir.mk>
    235 
    236 build-docs: ${.CURDIR}/BUILDING
    237 ${.CURDIR}/BUILDING: BUILDING.mdoc
    238 	groff -mdoc -Tascii -P-b -P-u -P-o $> >$@
    239