193d9e768b
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
22 lines
431 B
Makefile
22 lines
431 B
Makefile
# $FreeBSD$
|
|
|
|
SYSDIR ?= ${SRCTOP}/sys
|
|
|
|
BXE = ${SYSDIR}/dev/bxe
|
|
.PATH: ${BXE}
|
|
|
|
KMOD = if_bxe
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += bxe.c \
|
|
bxe_stats.c \
|
|
bxe_debug.c \
|
|
bxe_elink.c \
|
|
ecore_sp.c \
|
|
57710_init_values.c \
|
|
57711_init_values.c \
|
|
57712_init_values.c
|
|
|
|
CFLAGS += -I${BXE}
|
|
|
|
.include <bsd.kmod.mk>
|