mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
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
16 lines
391 B
Makefile
16 lines
391 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
#
|
|
.PATH: ${SRCTOP}/sys/dev/patm
|
|
|
|
KMOD= if_patm
|
|
SRCS= if_patm.c if_patm_attach.c if_patm_ioctl.c if_patm_intr.c \
|
|
if_patm_tx.c if_patm_rx.c if_patm_rtables.c \
|
|
device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h
|
|
|
|
CFLAGS+= -DENABLE_BPF
|
|
# CFLAGS+= -DPATM_DEBUG=0x0 -DINVARIANT_SUPPORT -DINVARIANTS -DDIAGNOSTIC
|
|
|
|
.include <bsd.kmod.mk>
|