xref: /freebsd/lib/libopenbsd/Makefile (revision ae07a5805b1906f29e786f415d67bef334557bd3)
1PACKAGE=lib${LIB}
2LIB=	openbsd
3SRCS=	imsg-buffer.c \
4	imsg.c \
5	ohash.c \
6	recallocarray.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