]> CyberLeo.Net >> Repos - FreeBSD/releng/9.1.git/blob - share/Makefile
Add pkg bootstrapping, configuration and public keys. [EN-14:03]
[FreeBSD/releng/9.1.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         ${_examples} \
12         ${_i18n} \
13         keys \
14         ${_man} \
15         ${_me} \
16         misc \
17         ${_mk} \
18         ${_mklocale} \
19         ${_monetdef} \
20         ${_msgdef} \
21         ${_numericdef} \
22         ${_sendmail} \
23         skel \
24         ${_snmp} \
25         ${_syscons} \
26         tabset \
27         termcap \
28         ${_timedef} \
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_DICT} != "no"
38 _dict=          dict
39 .endif
40
41 .if ${MK_EXAMPLES} != "no"
42 _examples=      examples
43 .endif
44
45 .if ${MK_GROFF} != "no"
46 _me=            me
47 .endif
48
49 .if ${MK_ICONV} != "no"
50 _i18n=          i18n
51 .endif
52
53 .if ${MK_LOCALES} != "no"
54 _colldef =      colldef
55 _mklocale =     mklocale
56 _monetdef =     monetdef
57 _msgdef =       msgdef
58 _numericdef =   numericdef
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 .if ${MK_ZONEINFO} != "no"
83 _zoneinfo=      zoneinfo
84 .endif
85
86 .include <bsd.subdir.mk>