xref: /freebsd-src/lib/libopenbsd/Makefile (revision 7d0873ebb83b19ba1e8a89e679470d885efe12e3)
1PACKAGE=lib${LIB}
2LIB=	openbsd
3SRCS=	imsg-buffer.c \
4	imsg.c \
5	ohash.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