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