diff options
author | John Birrell <jb@FreeBSD.org> | 2008-05-23 22:36:12 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 2008-05-23 22:36:12 +0000 |
commit | adab6548dea40ea9179d945dc439bcfc33f4f278 (patch) | |
tree | 931c31b5fc59f4b29b79dd08d773478a5c6c9c71 /sys/modules/Makefile | |
parent | 2c2491dd98aea4e034a05bc2d514c30fd5d062f0 (diff) |
Hook the DTrace kernel modules into the build.
Notes
Notes:
svn path=/head/; revision=179262
Diffstat (limited to 'sys/modules/Makefile')
-rw-r--r-- | sys/modules/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 193b58f7ce99..5fa7d0ee1650 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -66,6 +66,7 @@ SUBDIR= ${_3dfx} \ cue \ ${_cx} \ cxgb \ + ${_cyclic} \ dc \ dcons \ dcons_crom \ @@ -73,6 +74,7 @@ SUBDIR= ${_3dfx} \ ${_digi} \ ${_dpt} \ ${_drm} \ + ${_dtrace} \ dummynet \ ${_ed} \ ${_elink} \ @@ -203,6 +205,7 @@ SUBDIR= ${_3dfx} \ ${_nwfs} \ ${_nxge} \ ${_oltr} \ + ${_opensolaris} \ ${_padlock} \ patm \ ${_pccard} \ @@ -387,8 +390,14 @@ _coff= coff _cp= cp _cpufreq= cpufreq _cs= cs +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_cyclic= cyclic +.endif _digi= digi _drm= drm +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_dtrace= dtrace +.endif _ed= ed _elink= elink _em= em @@ -418,6 +427,9 @@ _nsp= nsp _nwfs= nwfs .endif _oltr= oltr +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_opensolaris= opensolaris +.endif _pccard= pccard _pcfclock= pcfclock _pecoff= pecoff @@ -517,8 +529,14 @@ _cmx= cmx _ciss= ciss _coretemp= coretemp _cpufreq= cpufreq +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_cyclic= cyclic +.endif _digi= digi _drm= drm +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_dtrace= dtrace +.endif _ed= ed _em= em _exca= exca @@ -550,6 +568,9 @@ _nfe= nfe _nve= nve _nvram= nvram _nxge= nxge +.if ${MK_CDDL} != "no" || defined(ALL_MODULES) +_opensolaris= opensolaris +.endif _pccard= pccard _rdma= rdma _safe= safe |