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