diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2003-06-23 14:46:12 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2003-06-23 14:46:12 +0000 |
| commit | fb24f088ae9a1bf49cf9a6fcfa3cbc34221c836f (patch) | |
| tree | b0e6e8378df894dbda8022943e32b7199fe5c28d /sys/modules/fatm | |
| parent | a97ec0069ec91111e0294e24a3740e86f45a5a01 (diff) | |
Notes
Diffstat (limited to 'sys/modules/fatm')
| -rw-r--r-- | sys/modules/fatm/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/modules/fatm/Makefile b/sys/modules/fatm/Makefile new file mode 100644 index 000000000000..f1c5940423dd --- /dev/null +++ b/sys/modules/fatm/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ +# +# Author: Harti Brandt <harti@freebsd.org> +# +.PATH: ${.CURDIR}/../../dev/fatm + +KMOD= if_fatm +SRCS= if_fatm.c device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h + +# CFLAGS+= -DFATM_DEBUG=0 -DINVARIANT_SUPPORT -DINVARIANTS -g +# LDFLAGS+= -g + +opt_inet.h: + echo "#define INET 1" > opt_inet.h + +opt_natm.h: + echo "#define NATM 1" > opt_natm.h + +.include <bsd.kmod.mk> |
