9673a2c2d0
versions of the modules, and unconditionally putting -g in CFLAGS has negative impact on the size of the resulting .ko object, even now that debugging symbols are always stripped.
19 lines
358 B
Makefile
19 lines
358 B
Makefile
# $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
|
|
|
|
opt_inet.h:
|
|
echo "#define INET 1" > opt_inet.h
|
|
|
|
opt_natm.h:
|
|
echo "#define NATM 1" > opt_natm.h
|
|
|
|
.include <bsd.kmod.mk>
|