Makefile revision 156813
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/share/Makefile 156813 2006-03-17 18:54:44Z ru $
3
4.include <bsd.own.mk>
5
6# Do not include `info' in the SUBDIR list, it is handled separately.
7
8SUBDIR=	${_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.if ${MK_LOCALES} != "no"
31_colldef =	colldef
32_mklocale =	mklocale
33_monetdef =	monetdef
34_msgdef =	msgdef
35_numericdef =	numericdef
36_timedef =	timedef
37.endif
38
39.if ${MK_SYSCONS} != "no"
40_syscons=	syscons
41.endif
42
43.if ${MK_MAN} != "no"
44_man=		man
45.endif
46
47.if ${MK_GROFF} != "no"
48_me=		me
49.endif
50
51.if ${MK_EXAMPLES} != "no"
52_examples=	examples
53.endif
54
55.if ${MK_I4B} != "no"
56_isdn=		isdn
57.endif
58
59.if ${MK_DICT} != "no"
60_dict=	 	dict
61.endif
62
63.if ${MK_SENDMAIL} != "no"
64_sendmail=	 sendmail
65.endif
66
67.if ${MK_SHAREDOCS} != "no"
68_doc=		doc
69.endif
70
71.include <bsd.subdir.mk>
72