freebsd-skq/sys/modules/ixgbe/Makefile
antoine 162471f2fb Remove option headers that do not exist and are not used
from the Makefiles in sys/modules.
(opt_devfs.h, opt_bdg.h, opt_emu10kx.h and opt_uslcom.h)

Approved by:	rwatson (mentor)
2008-03-27 20:38:03 +00:00

16 lines
367 B
Makefile

#$FreeBSD$
.PATH: ${.CURDIR}/../../dev/ixgbe
KMOD = ixgbe
SRCS = device_if.h bus_if.h pci_if.h
SRCS += ixgbe.c
# Shared source
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_82598.c
CFLAGS+= -I${.CURDIR}/../../dev/ixgbe
clean:
rm -f device_if.h bus_if.h pci_if.h setdef* *_StripErr
rm -f *.o *.kld *.ko
rm -f @ machine
.include <bsd.kmod.mk>