xref: /freebsd/lib/libopenbsd/Makefile (revision 7899f917b1c0ea178f1d2be0cfb452086d079d23)
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