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.
14 lines
238 B
Makefile
14 lines
238 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <brandt@fokus.gmd.de>
|
|
#
|
|
.PATH: ${.CURDIR}/../../dev/harp
|
|
|
|
KMOD= if_harp
|
|
SRCS= if_harp.c device_if.h
|
|
|
|
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include
|
|
CFLAGS+= -DDEBUG -DINVARIANTS
|
|
|
|
.include <bsd.kmod.mk>
|