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