Makefile revision 1.124
1#	$NetBSD: Makefile,v 1.124 2001/06/10 13:12:32 mrg 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#   NBUILDJOBS is the number of jobs to start in parallel during a
27#	'make build'. It defaults to 1.
28#   UPDATE will avoid a `make cleandir' at the start of `make build',
29#	as well as having the effects listed in /usr/share/mk/bsd.README.
30#   NOCLEANDIR will avoid a `make cleandir' at the start of `make build',
31#	but without having the effects listed in /usr/share/mk/bsd.README.
32#   NOINCLUDES will avoid the `make includes' usually done by `make build'.
33#
34# Targets:
35#   build: builds a full release of netbsd in DESTDIR. If BUILD_DONE is
36#	set, this is an empty target.
37#   release: does a `make build,' and then tars up the DESTDIR files
38#	into RELEASEDIR, in release(7) format. (See etc/Makefile for
39#	more information on this.)
40#   snapshot: a synonym for release.
41#
42# Sub targets of `make build,' in order:
43#   buildstartmsg: displays the start time of the build.
44#   beforeinstall: creates the distribution directories.
45#   do-force-domestic: check's that FORCE_DOMESTIC isn't set (deprecated.)
46#   do-share-mk: installs /usr/share/mk files.
47#   do-cleandir: clean's the tree.
48#   do-make-obj: create's object directories if required.
49#   do-check-egcs: check's that we have a modern enough compiler (deprecated.)
50#   do-make-includes: install include files.
51#   do-lib-csu: build & install startup object files.
52#   do-lib: build & install system libraries.
53#   do-gnu-lib: build & install gnu system libraries.
54#   do-dependall: builds & install the entire system.
55#   do-domestic: build & install the domestic tree (deprecated.)
56#   do-whatisdb: build & install the `whatis.db' man database.
57#   buildendmsg: displays the end time of the build.
58
59.include <bsd.own.mk>
60
61MKOBJDIRS ?= no
62HAVE_EGCS!=	${CXX} --version | egrep "^(2\.[89]|egcs)" ; echo
63
64.if defined(NBUILDJOBS)
65_J= -j${NBUILDJOBS}
66.endif
67
68.if defined(DESTDIR)
69_M=-m ${DESTDIR}/usr/share/mk
70.endif
71
72# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
73
74SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
75.if make(cleandir) || make(obj)
76SUBDIR+= distrib
77.ifdef MAKEOBJDIRPREFIX
78SUBDIR+= etc
79.endif
80.endif
81
82includes-lib: includes-include includes-sys
83
84.if exists(games)
85SUBDIR+= games
86.endif
87
88SUBDIR+= gnu
89# This is needed for libstdc++ and gen-params.
90includes-gnu: includes-include includes-sys
91
92.if exists(regress)
93.ifmake !(install)
94SUBDIR+= regress
95.endif
96
97regression-tests:
98	@echo Running regression tests...
99	@(cd ${.CURDIR}/regress && ${MAKE} ${_M} regress)
100.endif
101
102buildstartmsg:
103	@echo -n "Build started at: "
104	@date
105
106buildendmsg:
107	@echo -n "Build finished at: "
108	@date
109
110# If sharesrc is around, use its share/mk files to bootstrap until the
111# mk files are installed (first step of make build).  If installing to
112# DESTDIR, don't bother, since the build will fail later on anyway.
113
114beforeinstall:
115.ifndef NODISTRIBDIRS
116.ifndef DESTDIR
117.if exists(share/mk)
118	(cd ${.CURDIR}/etc && ${MAKE} -m ${.CURDIR}/share/mk DESTDIR=/ distrib-dirs)
119.else
120	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
121.endif
122.else
123	(cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
124.endif
125.endif
126
127afterinstall:
128.if ${MKMAN} != "no" && !defined(_BUILD)
129	${MAKE} ${_M} whatis.db
130.endif
131
132whatis.db:
133	(cd ${.CURDIR}/share/man && ${MAKE} ${_M} makedb)
134
135# wrt info/dir below:  It's safe to move this over top of /usr/share/info/dir,
136# as the build will automatically remove/replace the non-pkg entries there.
137
138.if defined(BUILD_DONE)
139build:
140	@echo "Build installed into ${DESTDIR}"
141.else
142build:
143	@${MAKE} ${_M} buildstartmsg
144	@${MAKE} ${_M} beforeinstall
145	@${MAKE} ${_M} do-force-domestic
146	@${MAKE} ${_M} do-share-mk
147	@${MAKE} ${_M} do-cleandir
148	@${MAKE} ${_M} do-make-obj
149	@${MAKE} ${_M} do-check-egcs
150	@${MAKE} ${_M} do-make-includes
151	@${MAKE} ${_M} do-lib-csu
152	@${MAKE} ${_M} do-lib
153	@${MAKE} ${_M} do-gnu-lib
154	@${MAKE} ${_M} do-dependall
155	@${MAKE} ${_M} do-domestic
156	@${MAKE} ${_M} do-whatisdb
157	@${MAKE} ${_M} buildendmsg
158.endif
159
160do-force-domestic:
161.if defined(FORCE_DOMESTIC)
162	@echo '*** CAPUTE!'
163	@echo '    The FORCE_DOMESTIC flag is not compatible with "make build".'
164	@echo '    Please correct the problem and try again.'
165	@false
166.endif
167
168do-share-mk:
169.if ${MKSHARE} != "no"
170	(cd ${.CURDIR}/share/mk && ${MAKE} install)
171.endif
172
173do-cleandir:
174.if !defined(UPDATE) && !defined(NOCLEANDIR)
175	${MAKE} ${_J} ${_M} cleandir
176.endif
177
178do-make-obj:
179.if ${MKOBJDIRS} != "no"
180	${MAKE} ${_J} ${_M} obj
181.endif
182
183do-check-egcs:
184.if empty(HAVE_EGCS)
185.if defined(DESTDIR)
186	@echo "*** CAPUTE!"
187	@echo "    You attempted to compile the world without egcs.  You must"
188	@echo "    first install a native egcs compiler."
189	@false
190.else
191	(cd ${.CURDIR}/gnu/usr.bin/egcs && \
192	    ${MAKE} ${_M} ${_J} dependall MKMAN=no && \
193	    ${MAKE} ${_M} MKMAN=no install && ${MAKE} ${_M} cleandir)
194.endif
195.endif
196
197do-make-includes:
198.if !defined(NOINCLUDES)
199	${MAKE} ${_M} includes
200.endif
201
202do-lib-csu:
203	(cd ${.CURDIR}/lib/csu && \
204	    ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
205	    ${MAKE} ${_M} MKSHARE=no install)
206
207do-lib:
208	(cd ${.CURDIR}/lib && \
209	    ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
210	    ${MAKE} ${_M} MKSHARE=no install)
211
212do-gnu-lib:
213	(cd ${.CURDIR}/gnu/lib && \
214	    ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
215	    ${MAKE} ${_M} MKSHARE=no install)
216
217do-dependall:
218	${MAKE} ${_M} ${_J} dependall && ${MAKE} ${_M} _BUILD= install
219
220do-domestic:
221.if defined(DOMESTIC) && !defined(EXPORTABLE_SYSTEM)
222	(cd ${.CURDIR}/${DOMESTIC} && ${MAKE} ${_M} ${_J} _SLAVE_BUILD= build)
223.endif
224
225do-whatisdb:
226	${MAKE} ${_M} whatis.db
227
228release snapshot: build
229	(cd ${.CURDIR}/etc && ${MAKE} ${_M} INSTALL_DONE=1 release)
230
231.include <bsd.subdir.mk>
232