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