Makefile (2e598474fa6a089cf784ae7a0dfd29f0af0b1a50) Makefile (690f477d75324543e57e2b45354c6e0670b9a5f7)
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
8SUBDIR= ${_colldef} \
9 ${_dict} \
10 ${_doc} \
11 ${_examples} \
12 ${_man} \
13 ${_me} \
14 misc \
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
8SUBDIR= ${_colldef} \
9 ${_dict} \
10 ${_doc} \
11 ${_examples} \
12 ${_man} \
13 ${_me} \
14 misc \
15 mk \
15 ${_mk} \
16 ${_mklocale} \
17 ${_monetdef} \
18 ${_msgdef} \
19 ${_numericdef} \
20 ${_sendmail} \
21 skel \
16 ${_mklocale} \
17 ${_monetdef} \
18 ${_msgdef} \
19 ${_numericdef} \
20 ${_sendmail} \
21 skel \
22 snmp \
22 ${_snmp} \
23 ${_syscons} \
24 tabset \
25 termcap \
26 ${_timedef} \
27 ${_zoneinfo}
28
23 ${_syscons} \
24 tabset \
25 termcap \
26 ${_timedef} \
27 ${_zoneinfo}
28
29# NB: keep these sorted by MK_* knobs
30
31.if ${MK_BSNMP} != "no"
32_snmp= snmp
33.endif
34
35.if ${MK_DICT} != "no"
36_dict= dict
37.endif
38
39.if ${MK_EXAMPLES} != "no"
40_examples= examples
41.endif
42
43.if ${MK_GROFF} != "no"
44_me= me
45.endif
46
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
47.if ${MK_LOCALES} != "no"
48_colldef = colldef
49_mklocale = mklocale
50_monetdef = monetdef
51_msgdef = msgdef
52_numericdef = numericdef
53_timedef = timedef
54.endif
55
38.if ${MK_SYSCONS} != "no"
39_syscons= syscons
56.if ${MK_MAKE} != "no"
57_mk= mk
40.endif
41
42.if ${MK_MAN} != "no"
43_man= man
44.endif
45
58.endif
59
60.if ${MK_MAN} != "no"
61_man= man
62.endif
63
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
64.if ${MK_SENDMAIL} != "no"
65_sendmail= sendmail
66.endif
67
68.if ${MK_SHAREDOCS} != "no"
69_doc= doc
70.endif
71
72.if ${MK_SYSCONS} != "no"
73_syscons= syscons
74.endif
75
66.if ${MK_ZONEINFO} != "no"
67_zoneinfo= zoneinfo
68.endif
69
70.include <bsd.subdir.mk>
76.if ${MK_ZONEINFO} != "no"
77_zoneinfo= zoneinfo
78.endif
79
80.include <bsd.subdir.mk>