diff options
| author | Jeff Roberson <jeff@FreeBSD.org> | 2011-03-23 08:27:57 +0000 |
|---|---|---|
| committer | Jeff Roberson <jeff@FreeBSD.org> | 2011-03-23 08:27:57 +0000 |
| commit | 06f0d80dc65c0a67ddbceae925ef2c728ef602cc (patch) | |
| tree | 59bf4210accf71c965b31f30f56e0b3a36d40f87 | |
| parent | 0a809056ce5c1932ca20f404a249d0787cced281 (diff) | |
Notes
| -rw-r--r-- | sys/modules/Makefile | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 19e80db6a52c..4ed9811fc7a7 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -418,6 +418,12 @@ _linprocfs= linprocfs _linsysfs= linsysfs _linux= linux _mse= mse +.if ${MK_OFED} != "no" || defined(ALL_MODULES) +_mlx4= mlx4 +_mlx4ib= mlx4ib +_mlxen= mlxen +_mthca= mthca +.endif .if ${MK_NCP} != "no" _ncp= ncp .endif @@ -566,6 +572,12 @@ _linprocfs= linprocfs _linsysfs= linsysfs _linux= linux _mly= mly +.if ${MK_OFED} != "no" || defined(ALL_MODULES) +_mlx4= mlx4 +_mlx4ib= mlx4ib +_mlxen= mlxen +_mthca= mthca +.endif _ndis= ndis _nfe= nfe _nve= nve @@ -673,13 +685,6 @@ _zfs= zfs .endif .endif -.if ${MK_OFED} != "no" || defined(ALL_MODULES) -_mthca= mthca -_mlx4= mlx4 -_mlx4ib= mlx4ib -_mlxen= mlxen -.endif - .if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES) SUBDIR=${MODULES_OVERRIDE} .endif @@ -697,6 +702,5 @@ afterinstall: kldxref ${DESTDIR}${KMODDIR}; \ fi .endif -#endif .include <bsd.subdir.mk> |
