blob: 29318859b45654d5d1fb939e937a24d204115b1f (
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
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
# $FreeBSD$
# Present but disabled: kpasswdd
SUBDIR= atrun \
bootpd \
comsat \
fingerd \
ftpd \
getNAME \
getty \
makekey \
mknetid \
pppoed \
rbootd \
revnetgroup \
rexecd \
rlogind \
rpc.rquotad \
rpc.rstatd \
rpc.rusersd \
rpc.rwalld \
rpc.sprayd \
rshd \
talkd \
tftpd \
uucpd \
xtend \
ypxfr
.if !defined(NO_BIND)
SUBDIR+=named-xfer
.endif
.if !defined(NO_SENDMAIL)
SUBDIR+=mail.local smrsh
.endif
.if ${OBJFORMAT} == aout
SUBDIR+=rtld-aout
.endif
.if ${OBJFORMAT} == elf
SUBDIR+=rtld-elf
.endif
.if defined(RELEASEDIR) || (!exists(${.CURDIR}/../secure) && !exists(${.CURDIR}/../kerberosIV)) || defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
# make release needs both
SUBDIR+=telnetd
.endif
.include <bsd.subdir.mk>
|