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