]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/Makefile
Merge ntpd & friends 4.2.4p5 from vendor/ntp/dist into head. Next commit
[FreeBSD/FreeBSD.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 .if ${MK_LOCALES} != "no"
30 _colldef =      colldef
31 _mklocale =     mklocale
32 _monetdef =     monetdef
33 _msgdef =       msgdef
34 _numericdef =   numericdef
35 _timedef =      timedef
36 .endif
37
38 .if ${MK_SYSCONS} != "no"
39 _syscons=       syscons
40 .endif
41
42 .if ${MK_MAN} != "no"
43 _man=           man
44 .endif
45
46 .if ${MK_GROFF} != "no"
47 _me=            me
48 .endif
49
50 .if ${MK_EXAMPLES} != "no"
51 _examples=      examples
52 .endif
53
54 .if ${MK_DICT} != "no"
55 _dict=          dict
56 .endif
57
58 .if ${MK_SENDMAIL} != "no"
59 _sendmail=       sendmail
60 .endif
61
62 .if ${MK_SHAREDOCS} != "no"
63 _doc=           doc
64 .endif
65
66 .if ${MK_ZONEINFO} != "no"
67 _zoneinfo=      zoneinfo
68 .endif
69
70 .include <bsd.subdir.mk>