forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
80 lines (68 loc) · 1.03 KB
/
Makefile
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# $NetBSD: Makefile,v 1.271 2015/08/17 06:42:46 knakahara Exp $
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
.include <bsd.own.mk>
SUBDIR= arp \
\
chroot \
dev_mkdb \
\
\
\
\
i2cscan inetd installboot \
\
\
link \
makefs \
mtree \
\
\
pwd_mkdb postinstall \
\
\
rdate \
\
service services_mkdb \
\
syslogd \
traceroute \
unlink user \
vipw vnconfig \
\
zdump zic
.if !defined(__MINIX)
.if ${MKMAKEMANDB} != "no"
SUBDIR+= makemandb
.endif
.endif # !defined(__MINIX)
.if (${MKYP} != "no")
SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
.endif
.if (${MKRUMP} != "no")
SUBDIR+= puffs
.endif
.if ${TOOLCHAIN_MISSING} != "no"
SUBDIR+= mdsetimage
.endif
.if (${MKINET6} != "no")
SUBDIR+= ndp
.endif
.if (${USE_INET6} != "no")
SUBDIR+= rtadvd traceroute6
.endif
.if !defined(__MINIX)
# ATM PVC
SUBDIR+=pvcsif pvctxctl
.if (${MKCRYPTO} != "no")
SUBDIR+= racoon racoonctl
.endif
.endif # !defined(__MINIX)
# NPF
.if (${MKNPF} != "no")
SUBDIR+=npf
.endif
# PF
.if (${MKPF} != "no")
SUBDIR+=pf
.endif
.include <bsd.subdir.mk>