]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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         ${_isdn} \
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_I4B} != "no"
49 _isdn=          isdn
50 .endif
51
52 .if ${MK_LOCALES} != "no"
53 _colldef =      colldef
54 _mklocale =     mklocale
55 _monetdef =     monetdef
56 _msgdef =       msgdef
57 _numericdef =   numericdef
58 _timedef =      timedef
59 .endif
60
61 .if ${MK_MAKE} != "no"
62 _mk=            mk
63 .endif
64
65 .if ${MK_MAN} != "no"
66 _man=           man
67 .endif
68
69 .if ${MK_SENDMAIL} != "no"
70 _sendmail=       sendmail
71 .endif
72
73 .if ${MK_SHAREDOCS} != "no"
74 _doc=           doc
75 .endif
76
77 .if ${MK_SYSCONS} != "no"
78 _syscons=       syscons
79 .endif
80
81 .if ${MK_ZONEINFO} != "no"
82 _zoneinfo=      zoneinfo
83 .endif
84
85 .include <bsd.subdir.mk>