9900a2bb5e
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
15 lines
336 B
Makefile
15 lines
336 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
.PATH: ${SRCTOP}/sys/dev/hatm
|
|
|
|
KMOD= if_hatm
|
|
SRCS= if_hatm.c if_hatm_intr.c if_hatm_ioctl.c if_hatm_tx.c if_hatm_rx.c \
|
|
device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h
|
|
|
|
CFLAGS+= -DENABLE_BPF
|
|
# CFLAGS+= -DHATM_DEBUG -DINVARIANT_SUPPORT -DINVARIANTS
|
|
|
|
.include <bsd.kmod.mk>
|