mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
These libraries don't install anything, so they shouldn't have a PACKAGE setting. This avoids surprising behaviour in future if e.g. manpages are added to an internal library. Reported by: des Differential Revision: https://reviews.freebsd.org/D51901
23 lines
383 B
Makefile
23 lines
383 B
Makefile
.PATH: ${SRCTOP}/sys/dev/nvmf/controller
|
|
.PATH: ${SRCTOP}/sys/libkern
|
|
|
|
LIB= nvmf
|
|
INTERNALLIB=
|
|
|
|
INCS= libnvmf.h
|
|
|
|
SRCS= gsb_crc32.c \
|
|
nvmf_controller.c \
|
|
nvmf_host.c \
|
|
nvmf_tcp.c \
|
|
nvmf_transport.c \
|
|
nvmft_subr.c
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/nvmf/controller
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/nvmf
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
CWARNFLAGS.gsb_crc32.c= -Wno-cast-align
|