blob: 1810420bf2c9b84c59e617bd9112169464741667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# $OpenBSD: Makefile,v 1.12 1996/06/02 10:44:55 tholo Exp $
# $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $
.include <bsd.own.mk> # for NOMAN, if it's there.
# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games
SUBDIR+= gnu
SUBDIR+= sys lkm
.if defined(KERBEROS)
SUBDIR+= kerberosIV
.endif
.if exists(regress)
.ifmake !(install)
SUBDIR+= regress
.endif
regression-tests:
@echo Running regression tests...
@(cd ${.CURDIR}/regress && ${MAKE} regress)
.endif
includes:
(cd ${.CURDIR}/include; ${MAKE} includes)
beforeinstall:
.ifndef DESTDIR
(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
.else
(cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
.endif
(cd ${.CURDIR}/include; ${MAKE} includes)
afterinstall:
.ifndef NOMAN
(cd ${.CURDIR}/share/man && ${MAKE} makedb)
.endif
build:
(cd ${.CURDIR}/share/mk && ${MAKE} install)
(cd ${.CURDIR}/include; ${MAKE} includes)
${MAKE} cleandir
(cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
(cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
.if defined(KERBEROS)
(cd ${.CURDIR}/kerberosIV && ${MAKE} build)
.endif
${MAKE} depend && ${MAKE} && ${MAKE} install
.include <bsd.subdir.mk>
|