mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
20 lines
301 B
Makefile
20 lines
301 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
CXGBE= ${SRCTOP}/sys/dev/cxgbe
|
||
|
|
.PATH: ${CXGBE}/crypto
|
||
|
|
|
||
|
|
KMOD= ccr
|
||
|
|
|
||
|
|
SRCS= t4_crypto.c
|
||
|
|
SRCS+= bus_if.h
|
||
|
|
SRCS+= device_if.h
|
||
|
|
SRCS+= cryptodev_if.h
|
||
|
|
SRCS+= pci_if.h
|
||
|
|
|
||
|
|
CFLAGS+= -I${CXGBE}
|
||
|
|
|
||
|
|
MFILES= kern/bus_if.m kern/device_if.m opencrypto/cryptodev_if.m \
|
||
|
|
dev/pci/pci_if.m
|
||
|
|
|
||
|
|
.include <bsd.kmod.mk>
|