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