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