diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2007-05-13 09:33:36 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2007-05-13 09:33:36 +0000 |
| commit | dab56305f470c65b9a99c38ac11dea40b718029f (patch) | |
| tree | 6d9013cc51f9c609e4055b83a1ad0857cce16cc2 /sys/modules | |
| parent | 63a40f03498c9e74a12ac61752a852d7d6cdf1b7 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/if_lagg/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/modules/if_lagg/Makefile b/sys/modules/if_lagg/Makefile new file mode 100644 index 000000000000..4d84c92d1702 --- /dev/null +++ b/sys/modules/if_lagg/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +.PATH: ${.CURDIR}/../../net +KMOD= if_lagg +SRCS= if_lagg.c ieee8023ad_lacp.c opt_inet.h opt_inet6.h + +.if !defined(KERNBUILDDIR) +opt_inet.h: + echo "#define INET 1" > ${.TARGET} + +.if ${MK_INET6_SUPPORT} != "no" +opt_inet6.h: + echo "#define INET6 1" > ${.TARGET} +.endif +.endif + +.include <bsd.kmod.mk> |
