Makefile revision 1.15
1#	$Id: Makefile,v 1.15 1994/02/07 05:08:57 cgd Exp $
2
3# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
4
5SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games
6SUBDIR+= gnu
7
8SUBDIR+= sys
9
10.if exists(regress)
11.ifmake !(install)
12SUBDIR+= regress
13.endif
14
15regression-tests:
16	@echo Running regression tests...
17	@( cd regress; make regress )
18.endif
19
20afterinstall:
21	(cd share/man && make makedb)
22
23build:
24	(cd install && make install)
25	make cleandir
26	(cd lib && make depend && make && make install)
27	(cd gnu/lib && make depend && make && make install)
28.if exists(kerberosIV)
29	(cd kerberosIV && make depend && make && make install)
30.endif
31	make depend && make && make install
32
33.include <bsd.subdir.mk>
34