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.
18 lines
304 B
Makefile
18 lines
304 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/lnc
|
|
|
|
KMOD= if_lnc
|
|
SRCS= if_lnc.c if_lnc_pci.c
|
|
.if ${MACHINE} == "pc98"
|
|
SRCS+= if_lnc_cbus.c
|
|
.else
|
|
SRCS+= if_lnc_isa.c
|
|
.endif
|
|
SRCS+= opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h
|
|
#SRCS+= miibus_if.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../dev/lnc
|
|
|
|
.include <bsd.kmod.mk>
|