Makefile revision 10479
1#
2#	$Id: Makefile,v 1.58 1995/08/04 12:06:51 asami Exp $
3#
4# Make command line options:
5#	-DCLOBBER will remove /usr/include and MOST of /usr/lib
6#	-DMAKE_LOCAL to add ./local to the SUBDIR list
7#	-DMAKE_PORTS to add ./ports to the SUBDIR list
8#	-DMAKE_EBONES to build eBones (KerberosIV)
9#
10#	-DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
11#	-DNOCRYPT will prevent building of crypt versions
12#	-DNOLKM do not build loadable kernel modules
13#	-DNOOBJDIR do not run ``${MAKE} obj''
14#	-DNOPROFILE do not build profiled libraries
15#	-DNOSECURE do not go into secure subdir
16
17# Put initial settings here.
18SUBDIR=
19
20# We must do include and lib first so that the perl *.ph generation
21# works correctly as it uses the header files installed by this.
22.if exists(include)
23SUBDIR+= include
24.endif
25.if exists(lib)
26SUBDIR+= lib
27.endif
28
29.if exists(bin)
30SUBDIR+= bin
31.endif
32.if exists(contrib)
33SUBDIR+= contrib
34.endif
35.if exists(games)
36SUBDIR+= games
37.endif
38.if exists(gnu)
39SUBDIR+= gnu
40.endif
41.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
42SUBDIR+= eBones
43.endif
44.if exists(libexec)
45SUBDIR+= libexec
46.endif
47.if exists(sbin)
48SUBDIR+= sbin
49.endif
50.if exists(share)
51SUBDIR+= share
52.endif
53.if exists(sys)
54SUBDIR+= sys
55.endif
56.if exists(usr.bin)
57SUBDIR+= usr.bin
58.endif
59.if exists(usr.sbin)
60SUBDIR+= usr.sbin
61.endif
62.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
63SUBDIR+= secure
64.endif
65.if exists(lkm) && !defined(NOLKM)
66SUBDIR+= lkm
67.endif
68
69# etc must be last for "distribute" to work
70.if exists(etc) && make(distribute)
71SUBDIR+= etc
72.endif
73
74# These are last, since it is nice to at least get the base system
75# rebuilt before you do them.
76.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
77SUBDIR+= local
78.endif
79.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
80SUBDIR+= ports
81.endif
82
83# Handle the -DNOOBJDIR and -DNOCLEANDIR
84.if defined(NOOBJDIR)
85OBJDIR=
86.else
87OBJDIR=		obj
88.endif
89.if defined(NOCLEANDIR)
90CLEANDIR=	clean
91.else
92CLEANDIR=	cleandir
93.endif
94
95world:	hierarchy mk cleandist includes lib-tools libraries tools
96	@echo "--------------------------------------------------------------"
97	@echo " Rebuilding ${DESTDIR} The whole thing"
98	@echo "--------------------------------------------------------------"
99	@echo
100	${MAKE} depend all install
101	cd ${.CURDIR}/share/man &&		${MAKE} makedb
102
103hierarchy:
104	@echo "--------------------------------------------------------------"
105	@echo " Making hierarchy"
106	@echo "--------------------------------------------------------------"
107	cd ${.CURDIR}/etc &&		${MAKE} distrib-dirs
108
109update:
110.if defined(SUP_UPDATE)
111	@echo "--------------------------------------------------------------"
112	@echo "Running sup"
113	@echo "--------------------------------------------------------------"
114	@sup -v ${SUPFILE}
115.endif
116.if defined(CVS_UPDATE)
117	@echo "--------------------------------------------------------------"
118	@echo "Updating /usr/src from cvs repository" ${CVSROOT}
119	@echo "--------------------------------------------------------------"
120	cd ${.CURDIR} &&  cvs update -P -d
121.endif
122
123cleandist:
124.if !defined(NOCLEANDIR)
125	@echo "--------------------------------------------------------------"
126	@echo " Cleaning up the source tree, and rebuilding the obj tree"
127	@echo "--------------------------------------------------------------"
128	@echo
129	here=`pwd`; dest=/usr/obj`echo $$here | sed 's,^/usr/src,,'`; \
130	if test -d /usr/obj -a ! -d $$dest; then \
131		mkdir -p $$dest; \
132	else \
133		true; \
134	fi; \
135	cd $$dest && rm -rf ${SUBDIR}
136	find . -name obj | xargs rm -rf
137.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
138	# The cd is done as local may well be a symbolic link
139	-cd local && find . -name obj | xargs rm -rf
140.endif
141.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
142	# The cd is done as local may well be a symbolic link
143	-cd ports && find . -name obj | xargs rm -rf
144.endif
145	${MAKE} cleandir
146	${MAKE} obj
147.endif
148
149installmost:
150	@echo "--------------------------------------------------------------"
151	@echo " Installing programs only"
152	@echo "--------------------------------------------------------------"
153	cd ${.CURDIR}/bin	&&	${MAKE} ${.MAKEFLAGS} install
154	cd ${.CURDIR}/sbin	&&	${MAKE} ${.MAKEFLAGS} install
155	cd ${.CURDIR}/libexec	&&	${MAKE} ${.MAKEFLAGS} install
156	cd ${.CURDIR}/usr.bin	&&	${MAKE} ${.MAKEFLAGS} install
157	cd ${.CURDIR}/usr.sbin	&&	${MAKE} ${.MAKEFLAGS} install
158	cd ${.CURDIR}/gnu/libexec &&	${MAKE} ${.MAKEFLAGS} install
159	cd ${.CURDIR}/gnu/usr.bin &&	${MAKE} ${.MAKEFLAGS} install
160	cd ${.CURDIR}/gnu/usr.sbin &&	${MAKE} ${.MAKEFLAGS} install
161#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
162#	cd ${.CURDIR}/eBones	&&	${MAKE} ${.MAKEFLAGS} installmost
163#.endif
164#.if !defined(NOSECURE) && !defined(NOCRYPT)
165#	cd ${.CURDIR}/secure	&&	${MAKE} ${.MAKEFLAGS} installmost
166#.endif
167
168most:
169	@echo "--------------------------------------------------------------"
170	@echo " Building programs only"
171	@echo "--------------------------------------------------------------"
172	cd ${.CURDIR}/bin	&&	${MAKE} ${.MAKEFLAGS} all
173	cd ${.CURDIR}/sbin	&&	${MAKE} ${.MAKEFLAGS} all
174	cd ${.CURDIR}/libexec	&&	${MAKE} ${.MAKEFLAGS} all
175	cd ${.CURDIR}/usr.bin	&&	${MAKE} ${.MAKEFLAGS} all
176	cd ${.CURDIR}/usr.sbin	&&	${MAKE} ${.MAKEFLAGS} all
177	cd ${.CURDIR}/gnu/libexec &&	${MAKE} ${.MAKEFLAGS} all
178	cd ${.CURDIR}/gnu/usr.bin &&	${MAKE} ${.MAKEFLAGS} all
179	cd ${.CURDIR}/gnu/usr.sbin &&	${MAKE} ${.MAKEFLAGS} all
180#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
181#	cd ${.CURDIR}/eBones	&&	${MAKE} ${.MAKEFLAGS} most
182#.endif
183#.if !defined(NOSECURE) && !defined(NOCRYPT)
184#	cd ${.CURDIR}/secure	&&	${MAKE} ${.MAKEFLAGS} most
185#.endif
186
187mk:
188	@echo "--------------------------------------------------------------"
189	@echo " Rebuilding ${DESTDIR}/usr/share/mk"
190	@echo "--------------------------------------------------------------"
191	cd ${.CURDIR}/share/mk &&		${MAKE} install
192
193includes:
194	@echo "--------------------------------------------------------------"
195	@echo " Rebuilding ${DESTDIR}/usr/include"
196	@echo "--------------------------------------------------------------"
197	@echo
198.if defined(CLOBBER)
199	rm -rf ${DESTDIR}/usr/include/*
200	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
201		-p ${DESTDIR}/usr/include
202.endif
203	cd ${.CURDIR}/include &&		${MAKE} install
204	cd ${.CURDIR}/gnu/include &&		${MAKE}	install
205	cd ${.CURDIR}/gnu/lib/libreadline &&	${MAKE} beforeinstall
206	cd ${.CURDIR}/gnu/lib/libregex &&	${MAKE} beforeinstall
207	cd ${.CURDIR}/gnu/lib/libg++ &&         ${MAKE} beforeinstall
208	cd ${.CURDIR}/gnu/lib/libdialog &&      ${MAKE} beforeinstall
209.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
210	cd ${.CURDIR}/eBones/include &&		${MAKE} beforeinstall
211.endif
212	cd ${.CURDIR}/lib/libc &&		${MAKE} beforeinstall
213	cd ${.CURDIR}/lib/libcurses &&		${MAKE} beforeinstall
214	cd ${.CURDIR}/lib/libedit &&		${MAKE} beforeinstall
215	cd ${.CURDIR}/lib/libmd &&		${MAKE} beforeinstall
216	cd ${.CURDIR}/lib/libmytinfo &&		${MAKE}	beforeinstall
217	cd ${.CURDIR}/lib/libncurses &&		${MAKE}	beforeinstall
218.if !defined(WANT_CSRG_LIBM)
219	cd ${.CURDIR}/lib/msun &&		${MAKE} beforeinstall
220.endif
221	cd ${.CURDIR}/lib/libpcap &&		${MAKE} beforeinstall
222	cd ${.CURDIR}/lib/librpcsvc &&		${MAKE} beforeinstall
223	cd ${.CURDIR}/lib/libskey &&		${MAKE} beforeinstall
224	cd ${.CURDIR}/lib/libtermcap &&		${MAKE}	beforeinstall
225	cd ${.CURDIR}/lib/libcom_err &&		${MAKE} beforeinstall
226	cd ${.CURDIR}/lib/libss &&		${MAKE} beforeinstall
227	cd ${.CURDIR}/lib/libforms &&		${MAKE}	beforeinstall
228	cd ${.CURDIR}/lib/libscsi &&		${MAKE}	beforeinstall
229
230lib-tools:
231	@echo "--------------------------------------------------------------"
232	@echo " Rebuilding tools needed to build the libraries"
233	@echo "--------------------------------------------------------------"
234	@echo
235	cd ${.CURDIR}/gnu/usr.bin/ld && \
236		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
237	cd ${.CURDIR}/usr.bin/ar && \
238		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
239	cd ${.CURDIR}/usr.bin/ranlib && \
240		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
241	cd ${.CURDIR}/usr.bin/nm && \
242		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
243	cd ${.CURDIR}/usr.bin/lex/lib && \
244		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
245	cd ${.CURDIR}/usr.bin/compile_et && \
246		${MAKE} depend all install ${CLEANDIR} ${OBJDIR} && \
247		rm -f /usr/sbin/compile_et
248	cd ${.CURDIR}/usr.bin/mk_cmds && \
249		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
250
251libraries:
252	@echo "--------------------------------------------------------------"
253	@echo " Rebuilding ${DESTDIR}/usr/lib"
254	@echo "--------------------------------------------------------------"
255	@echo
256.if defined(CLOBBER)
257	find ${DESTDIR}/usr/lib \! -name '*.s[ao].*' -a \! -type d | \
258		xargs rm -rf
259.endif
260.if exists(lib/libcompat)
261	cd ${.CURDIR}/lib/libcompat && \
262		${MAKE} depend all install
263.endif
264.if exists(lib/libncurses)
265	cd ${.CURDIR}/lib/libncurses && \
266		${MAKE} depend all install
267.endif
268.if exists(lib/libtermcap)
269	cd ${.CURDIR}/lib/libtermcap && \
270		${MAKE} depend all install
271.endif
272.if exists(gnu)
273	cd ${.CURDIR}/gnu/lib && \
274		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
275	cd ${.CURDIR}/gnu/usr.bin/cc/libgcc && \
276		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
277.endif
278.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
279	cd ${.CURDIR}/secure/lib && \
280		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
281.endif
282.if exists(lib)
283	cd ${.CURDIR}/lib/csu/i386 && \
284		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
285	cd ${.CURDIR}/lib && \
286		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
287.endif
288	cd ${.CURDIR}/usr.bin/lex/lib && \
289		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
290.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
291	cd ${.CURDIR}/eBones/des && \
292		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
293	cd ${.CURDIR}/eBones/acl && \
294		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
295	cd ${.CURDIR}/eBones/kdb && \
296		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
297	cd ${.CURDIR}/eBones/krb && \
298		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
299.endif
300.if exists(usr.sbin/pcvt/keycap)
301	cd ${.CURDIR}/usr.sbin/pcvt/keycap && \
302		 ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
303.endif
304
305tools:
306	@echo "--------------------------------------------------------------"
307	@echo " Rebuilding ${DESTDIR} C compiler, make, and zic(8)"
308	@echo "--------------------------------------------------------------"
309	@echo
310	cd ${.CURDIR}/gnu/usr.bin/cc && \
311		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
312	cd ${.CURDIR}/usr.bin/make && \
313		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
314	cd ${.CURDIR}/usr.sbin/zic && \
315		${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
316
317.include <bsd.subdir.mk>
318