xref: /freebsd/lib/libopenbsd/Makefile (revision 1a80bcc5fafaa822e281bf963e7c58a8747a610c)
1LIB=	openbsd
2SRCS=	imsg-buffer.c \
3	imsg.c \
4	ohash.c \
5	recallocarray.c
6.if !defined(BOOTSTRAPPING)
7# Skip getdtablecount.c when bootstrapping since it doesn't compile for Linux
8# and is not used by any of the bootstrap tools
9SRCS+=	getdtablecount.c
10.endif
11
12INTERNALLIB=
13
14CFLAGS+= -I${.CURDIR}
15
16WARNS?=	3
17
18.include <bsd.lib.mk>
19