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