]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - share/Makefile
MFC r363988:
[FreeBSD/stable/9.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         ${_timedef} \
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_GROFF} != "no"
51 _me=            me
52 .endif
53
54 .if ${MK_ICONV} != "no"
55 _i18n=          i18n
56 .endif
57
58 .if ${MK_LOCALES} != "no"
59 _colldef =      colldef
60 _mklocale =     mklocale
61 _monetdef =     monetdef
62 _msgdef =       msgdef
63 _numericdef =   numericdef
64 _timedef =      timedef
65 .endif
66
67 .if ${MK_MAKE} != "no"
68 _mk=            mk
69 .endif
70
71 .if ${MK_MAN} != "no"
72 _man=           man
73 .endif
74
75 .if ${MK_SENDMAIL} != "no"
76 _sendmail=       sendmail
77 .endif
78
79 .if ${MK_SHAREDOCS} != "no"
80 _doc=           doc
81 .endif
82
83 .if ${MK_SYSCONS} != "no"
84 _syscons=       syscons
85 .endif
86
87 .if ${MK_ZONEINFO} != "no"
88 _zoneinfo=      zoneinfo
89 .endif
90
91 .include <bsd.subdir.mk>