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