Handle copyin failures.
[freebsd.git] / share / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 # Do not include `info' in the SUBDIR list, it is handled separately.
7
8 SUBDIR= ${_colldef} \
9         ${_ctypedef} \
10         ${_dict} \
11         ${_doc} \
12         ${_dtrace} \
13         ${_examples} \
14         ${_i18n} \
15         keys \
16         ${_locale-links} \
17         ${_man} \
18         ${_me} \
19         misc \
20         ${_mk} \
21         ${_monetdef} \
22         ${_msgdef} \
23         ${_numericdef} \
24         ${_sendmail} \
25         skel \
26         ${_snmp} \
27         ${_syscons} \
28         tabset \
29         termcap \
30         ${_tests} \
31         ${_timedef} \
32         ${_vt} \
33         ${_zoneinfo}
34
35 # NB: keep these sorted by MK_* knobs
36
37 .if ${MK_BSNMP} != "no"
38 _snmp=          snmp
39 .endif
40
41 .if ${MK_CDDL} != "no"
42 _dtrace=        dtrace
43 .endif
44
45 .if ${MK_DICT} != "no"
46 _dict=          dict
47 .endif
48
49 .if ${MK_EXAMPLES} != "no"
50 _examples=      examples
51 .endif
52
53 .if ${MK_GROFF} != "no"
54 _me=            me
55 .endif
56
57 .if ${MK_ICONV} != "no"
58 _i18n=          i18n
59 .endif
60
61 .if ${MK_LOCALES} != "no"
62 _colldef=       colldef
63 _ctypedef=      ctypedef
64 _locale-links=  locale-links
65 _monetdef=      monetdef
66 _msgdef=        msgdef
67 _numericdef=    numericdef
68 _timedef=       timedef
69 .endif
70
71 .if ${MK_MAKE} != "no"
72 _mk=            mk
73 .endif
74
75 .if ${MK_MAN} != "no"
76 _man=           man
77 .endif
78
79 .if ${MK_SENDMAIL} != "no"
80 _sendmail=       sendmail
81 .endif
82
83 .if ${MK_SHAREDOCS} != "no"
84 _doc=           doc
85 .endif
86
87 .if ${MK_SYSCONS} != "no"
88 _syscons=       syscons
89 .endif
90
91 .if ${MK_TESTS} != "no"
92 _tests=         tests
93 .endif
94
95 .if ${MK_VT} != "no"
96 _vt=            vt
97 .endif
98
99 .if ${MK_ZONEINFO} != "no"
100 _zoneinfo=      zoneinfo
101 .endif
102
103 SUBDIR_PARALLEL=
104
105 .include <bsd.subdir.mk>