]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/Makefile
MFH
[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         ${_comsat} \
9         ${_dma} \
10         getty \
11         ${_mail.local} \
12         ${_makewhatis.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_FINGER} != "no"
41 SUBDIR+=        fingerd
42 .endif
43
44 .if ${MK_FTP} != "no"
45 SUBDIR+=        ftpd
46 .endif
47
48 .if ${MK_MAIL} != "no"
49 _comsat=        comsat
50 .endif
51
52 .if ${MK_DMAGENT} != "no"
53 _dma=           dma
54 .endif
55
56 .if ${MK_NIS} != "no"
57 _mknetid=       mknetid
58 _ypxfr=         ypxfr
59 .endif
60
61 .if ${MK_NETGRAPH} != "no"
62 _pppoed=        pppoed
63 .endif
64
65 .if ${MK_PF} != "no"
66 _tftp-proxy=    tftp-proxy
67 .endif
68
69 .if !defined(NO_PIC) && !defined(NO_RTLD)
70 _rtld-elf=      rtld-elf
71 .endif
72
73 .if ${MK_RBOOTD} != "no"
74 SUBDIR+=        rbootd
75 .endif
76
77 .if ${MK_RCMDS} != "no"
78 _rlogind=       rlogind
79 _rshd=          rshd
80 .endif
81
82 .if ${MK_SENDMAIL} != "no"
83 _mail.local=    mail.local
84 _smrsh=         smrsh
85 .endif
86
87 .if ${MK_MAN_UTILS} != "no"
88 _makewhatis.local=      makewhatis.local
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>