]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - share/Makefile
MFC r362623:
[FreeBSD/stable/8.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         keys \
13         ${_man} \
14         ${_me} \
15         misc \
16         ${_mk} \
17         ${_mklocale} \
18         ${_monetdef} \
19         ${_msgdef} \
20         ${_numericdef} \
21         ${_sendmail} \
22         skel \
23         ${_snmp} \
24         ${_syscons} \
25         tabset \
26         termcap \
27         ${_timedef} \
28         ${_zoneinfo}
29
30 # NB: keep these sorted by MK_* knobs
31
32 .if ${MK_BSNMP} != "no"
33 _snmp=          snmp
34 .endif
35
36 .if ${MK_DICT} != "no"
37 _dict=          dict
38 .endif
39
40 .if ${MK_EXAMPLES} != "no"
41 _examples=      examples
42 .endif
43
44 .if ${MK_GROFF} != "no"
45 _me=            me
46 .endif
47
48 .if ${MK_LOCALES} != "no"
49 _colldef =      colldef
50 _mklocale =     mklocale
51 _monetdef =     monetdef
52 _msgdef =       msgdef
53 _numericdef =   numericdef
54 _timedef =      timedef
55 .endif
56
57 .if ${MK_MAKE} != "no"
58 _mk=            mk
59 .endif
60
61 .if ${MK_MAN} != "no"
62 _man=           man
63 .endif
64
65 .if ${MK_SENDMAIL} != "no"
66 _sendmail=       sendmail
67 .endif
68
69 .if ${MK_SHAREDOCS} != "no"
70 _doc=           doc
71 .endif
72
73 .if ${MK_SYSCONS} != "no"
74 _syscons=       syscons
75 .endif
76
77 .if ${MK_ZONEINFO} != "no"
78 _zoneinfo=      zoneinfo
79 .endif
80
81 .include <bsd.subdir.mk>