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.
22 lines
492 B
Makefile
22 lines
492 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
.PATH: ${.CURDIR}/../../dev/patm
|
|
|
|
KMOD= if_patm
|
|
SRCS= if_patm.c if_patm_attach.c if_patm_ioctl.c if_patm_intr.c \
|
|
if_patm_tx.c if_patm_rx.c if_patm_rtables.c \
|
|
device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h
|
|
|
|
CFLAGS+= -DENABLE_BPF
|
|
# CFLAGS+= -DPATM_DEBUG=0x0 -DINVARIANT_SUPPORT -DINVARIANTS -DDIAGNOSTIC
|
|
|
|
opt_inet.h:
|
|
echo "#define INET 1" > opt_inet.h
|
|
|
|
opt_natm.h:
|
|
echo "#define NATM 1" > opt_natm.h
|
|
|
|
.include <bsd.kmod.mk>
|