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