opnsense-src/lib/libopenbsd/Makefile
Ricardo Branco 71a0af25a5 libopenbsd: Add recallocarray()
Reviewed by:	kib
MFC after:	1 month
Pull Request:	https://github.com/freebsd/freebsd-src/pull/1698
2025-07-06 23:09:00 +00:00

19 lines
347 B
Makefile

PACKAGE=lib${LIB}
LIB= openbsd
SRCS= imsg-buffer.c \
imsg.c \
ohash.c \
recallocarray.c
.if !defined(BOOTSTRAPPING)
# Skip getdtablecount.c when bootstrapping since it doesn't compile for Linux
# and is not used by any of the bootstrap tools
SRCS+= getdtablecount.c
.endif
INTERNALLIB=
CFLAGS+= -I${.CURDIR}
WARNS?= 3
.include <bsd.lib.mk>