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