diff options
| author | Ian Dowse <iedowse@FreeBSD.org> | 2003-06-23 22:01:01 +0000 |
|---|---|---|
| committer | Ian Dowse <iedowse@FreeBSD.org> | 2003-06-23 22:01:01 +0000 |
| commit | ce3ae5c7e38ae2d9d6e0890e2a49c2ade4bf9438 (patch) | |
| tree | 67d68822fbcff043034b14c470baf44abda46c3b /sys/modules | |
| parent | ec4270c0216f17df50527a321c14790b94d530f3 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 5a27fcd8ddc9b..e3805d6c417fa 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,12 +1,14 @@ # $FreeBSD$ -.if exists(${.CURDIR}/../opencrypto) && !defined(NOCRYPT) +.if !defined(NOCRYPT) || defined(ALL_MODULES) +.if exists(${.CURDIR}/../opencrypto) _crypto= crypto _cryptodev= cryptodev .endif -.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) +.if exists(${.CURDIR}/../crypto) _random= random .endif +.endif SUBDIR= accf_data \ accf_http \ @@ -145,11 +147,11 @@ SUBDIR= accf_data \ wlan \ xl -.if defined(WANT_EXT2FS_MODULE) +.if defined(WANT_EXT2FS_MODULE) || defined(ALL_MODULES) SUBDIR+=ext2fs .endif -.if !defined(NO_IPFILTER) +.if !defined(NO_IPFILTER) || defined(ALL_MODULES) SUBDIR+=ipfilter .endif @@ -294,6 +296,10 @@ SUBDIR+=gem SUBDIR+=hme .endif +.if defined(ALL_MODULES) +SUBDIR+=ufs +.endif + .if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES) SUBDIR=${MODULES_OVERRIDE} .endif |
