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