blob: db2089a7642b4d0388d772541b7986373c4ca3d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
# Do not include `info' in the SUBDIR list, it is handled separately.
SUBDIR= ${_colldef} \
${_dict} \
${_doc} \
${_examples} \
${_isdn} \
${_man} \
${_me} \
misc \
mk \
${_mklocale} \
${_monetdef} \
${_msgdef} \
${_numericdef} \
${_sendmail} \
skel \
snmp \
${_syscons} \
tabset \
termcap \
${_timedef} \
zoneinfo
.if !defined(NO_LOCALES)
_colldef = colldef
_mklocale = mklocale
_monetdef = monetdef
_msgdef = msgdef
_numericdef = numericdef
_timedef = timedef
.endif
.if !defined(NO_SYSCONS)
_syscons= syscons
.endif
.if !defined(NO_MAN)
_man= man
.endif
.if !defined(NO_GROFF)
_me= me
.endif
.if !defined(NO_EXAMPLES)
_examples= examples
.endif
.if !defined(NO_I4B)
_isdn= isdn
.endif
.if !defined(NO_DICT)
_dict= dict
.endif
.if !defined(NO_SENDMAIL)
_sendmail= sendmail
.endif
.if !defined(NO_SHAREDOCS)
_doc= doc
.endif
.include <bsd.subdir.mk>
|