]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/Makefile
Upgrade to OpenSSH 6.8p1.
[FreeBSD/FreeBSD.git] / libexec / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/4/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 SUBDIR= ${_atf} \
7         ${_atrun} \
8         ${_casper} \
9         ${_comsat} \
10         ${_dma} \
11         getty \
12         ${_mail.local} \
13         ${_mknetid} \
14         ${_pppoed} \
15         revnetgroup \
16         ${_rlogind} \
17         rpc.rquotad \
18         rpc.rstatd \
19         rpc.rusersd \
20         rpc.rwalld \
21         rpc.sprayd \
22         ${_rshd} \
23         ${_rtld-elf} \
24         save-entropy \
25         ${_smrsh} \
26         ${_telnetd} \
27         ${_tests} \
28         ${_tftp-proxy} \
29         ulog-helper \
30         ${_ypxfr}
31
32 .if ${MK_AT} != "no"
33 _atrun=         atrun
34 .endif
35
36 .if ${MK_BOOTPD} != "no"
37 SUBDIR+=        bootpd
38 .endif
39
40 .if ${MK_CASPER} != "no"
41 _casper=        casper
42 .endif
43
44 .if ${MK_FINGER} != "no"
45 SUBDIR+=        fingerd
46 .endif
47
48 .if ${MK_FTP} != "no"
49 SUBDIR+=        ftpd
50 .endif
51
52 .if ${MK_MAIL} != "no"
53 _comsat=        comsat
54 .endif
55
56 .if ${MK_DMAGENT} != "no"
57 _dma=           dma
58 .endif
59
60 .if ${MK_NIS} != "no"
61 _mknetid=       mknetid
62 _ypxfr=         ypxfr
63 .endif
64
65 .if ${MK_NETGRAPH} != "no"
66 _pppoed=        pppoed
67 .endif
68
69 .if ${MK_PF} != "no"
70 _tftp-proxy=    tftp-proxy
71 .endif
72
73 .if !defined(NO_PIC) && !defined(NO_RTLD)
74 _rtld-elf=      rtld-elf
75 .endif
76
77 .if ${MK_RBOOTD} != "no"
78 SUBDIR+=        rbootd
79 .endif
80
81 .if ${MK_RCMDS} != "no"
82 _rlogind=       rlogind
83 _rshd=          rshd
84 .endif
85
86 .if ${MK_SENDMAIL} != "no"
87 _mail.local=    mail.local
88 _smrsh=         smrsh
89 .endif
90
91 .if ${MK_TALK} != "no"
92 SUBDIR+=        talkd
93 .endif
94
95 .if ${MK_TCP_WRAPPERS} != "no"
96 SUBDIR+=        tcpd
97 .endif
98
99 .if ${MK_TELNET} != "no"
100 _telnetd=       telnetd
101 .endif
102
103 .if ${MK_TFTP} != "no"
104 SUBDIR+=        tftpd
105 .endif
106
107 .if ${MK_TESTS} != "no"
108 _atf=           atf
109 _tests=         tests
110 .endif
111
112 .include <bsd.arch.inc.mk>
113
114 .include <bsd.subdir.mk>