Makefile revision 1.36
1#	$NetBSD: Makefile,v 1.36 1996/08/10 23:29:00 explorer Exp $
2
3.include <bsd.own.mk>			# for configuration variables.
4
5# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
6
7SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share
8
9.if exists(games)
10SUBDIR+= games
11.endif
12
13SUBDIR+= gnu
14
15SUBDIR+= sys
16
17.if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
18SUBDIR+= domestic
19.endif
20
21.if exists(regress)
22.ifmake !(install)
23SUBDIR+= regress
24.endif
25
26regression-tests:
27	@echo Running regression tests...
28	@(cd ${.CURDIR}/regress && ${MAKE} regress)
29.endif
30
31beforeinstall:
32.ifndef DESTDIR
33	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
34.else
35	(cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
36.endif
37
38afterinstall:
39.ifndef NOMAN
40	(cd ${.CURDIR}/share/man && ${MAKE} makedb)
41.endif
42
43build:
44	(cd ${.CURDIR}/share/mk && ${MAKE} install)
45	${MAKE} includes
46	${MAKE} cleandir
47	(cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
48	(cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
49.if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
50	# XXX should do the whole of domestic/lib
51	(cd ${.CURDIR}/domestic/lib/libcrypt && ${MAKE} depend && ${MAKE} && \
52	    ${MAKE} install)
53.endif
54	${MAKE} depend && ${MAKE} && ${MAKE} install
55
56.include <bsd.subdir.mk>
57