blob: 5364abdf0db543b9ee129a4cc766e80e4816ad1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
SUBDIR= atrun bootpd bootpgw comsat fingerd ftpd getNAME getty lfs_cleanerd \
mail.local makekey rexecd rlogind rpc.rstatd rpc.rusersd \
rpc.rwalld rshd talkd tftpd uucpd xtend
.if !exists(../secure) || defined(NOSECURE)
SUBDIR+=telnetd
.else
SUBDIR+= ../secure/libexec/telnetd
.endif
# Present but disabled: kpasswdd
.if ${MACHINE} == "hp300"
SUBDIR+=rbootd
.elif ${MACHINE} == "i386"
SUBDIR+=rbootd
.elif ${MACHINE} == "luna68k"
SUBDIR+=rbootd
.endif
.include <bsd.subdir.mk>
|