]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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= ${_atf} \
9         ${_colldef} \
10         ${_dict} \
11         ${_doc} \
12         dtrace \
13         ${_examples} \
14         ${_i18n} \
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         ${_timedef} \
30         xml \
31         xsl \
32         ${_zoneinfo}
33
34 # NB: keep these sorted by MK_* knobs
35
36 .if ${MK_ATF} != "no"
37 _atf=           atf
38 .endif
39
40 .if ${MK_BSNMP} != "no"
41 _snmp=          snmp
42 .endif
43
44 .if ${MK_DICT} != "no"
45 _dict=          dict
46 .endif
47
48 .if ${MK_EXAMPLES} != "no"
49 _examples=      examples
50 .endif
51
52 .if ${MK_GROFF} != "no"
53 _me=            me
54 .endif
55
56 .if ${MK_ICONV} != "no"
57 _i18n=          i18n
58 .endif
59
60 .if ${MK_LOCALES} != "no"
61 _colldef =      colldef
62 _mklocale =     mklocale
63 _monetdef =     monetdef
64 _msgdef =       msgdef
65 _numericdef =   numericdef
66 _timedef =      timedef
67 .endif
68
69 .if ${MK_MAKE} != "no"
70 _mk=            mk
71 .endif
72
73 .if ${MK_MAN} != "no"
74 _man=           man
75 .endif
76
77 .if ${MK_SENDMAIL} != "no"
78 _sendmail=       sendmail
79 .endif
80
81 .if ${MK_SHAREDOCS} != "no"
82 _doc=           doc
83 .endif
84
85 .if ${MK_SYSCONS} != "no"
86 _syscons=       syscons
87 .endif
88
89 .if ${MK_ZONEINFO} != "no"
90 _zoneinfo=      zoneinfo
91 .endif
92
93 .include <bsd.subdir.mk>