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