]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/blob - share/Makefile
Document SA-14:25, SA-14:26
[FreeBSD/releng/10.1.git] / share / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 # Do not include `info' in the SUBDIR list, it is handled separately.
7
8 SUBDIR= ${_colldef} \
9         ${_dict} \
10         ${_doc} \
11         dtrace \
12         ${_examples} \
13         ${_i18n} \
14         keys \
15         ${_man} \
16         ${_me} \
17         misc \
18         ${_mk} \
19         ${_mklocale} \
20         ${_monetdef} \
21         ${_msgdef} \
22         ${_numericdef} \
23         ${_sendmail} \
24         skel \
25         ${_snmp} \
26         ${_syscons} \
27         tabset \
28         termcap \
29         ${_tests} \
30         ${_timedef} \
31         ${_vt} \
32         ${_zoneinfo}
33
34 # NB: keep these sorted by MK_* knobs
35
36 .if ${MK_BSNMP} != "no"
37 _snmp=          snmp
38 .endif
39
40 .if ${MK_DICT} != "no"
41 _dict=          dict
42 .endif
43
44 .if ${MK_EXAMPLES} != "no"
45 _examples=      examples
46 .endif
47
48 .if ${MK_GROFF} != "no"
49 _me=            me
50 .endif
51
52 .if ${MK_ICONV} != "no"
53 _i18n=          i18n
54 .endif
55
56 .if ${MK_LOCALES} != "no"
57 _colldef =      colldef
58 _mklocale =     mklocale
59 _monetdef =     monetdef
60 _msgdef =       msgdef
61 _numericdef =   numericdef
62 _timedef =      timedef
63 .endif
64
65 .if ${MK_MAKE} != "no"
66 _mk=            mk
67 .endif
68
69 .if ${MK_MAN} != "no"
70 _man=           man
71 .endif
72
73 .if ${MK_SENDMAIL} != "no"
74 _sendmail=       sendmail
75 .endif
76
77 .if ${MK_SHAREDOCS} != "no"
78 _doc=           doc
79 .endif
80
81 .if ${MK_SYSCONS} != "no"
82 _syscons=       syscons
83 .endif
84
85 .if ${MK_TESTS} != "no"
86 _tests=         tests
87 .endif
88
89 .if ${MK_VT} != "no"
90 _vt=            vt
91 .endif
92
93 .if ${MK_ZONEINFO} != "no"
94 _zoneinfo=      zoneinfo
95 .endif
96
97 .include <bsd.subdir.mk>