xref: /freebsd/lib/libopenbsd/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1 PACKAGE=lib${LIB}
2 LIB=	openbsd
3 SRCS=	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
9 SRCS+=	getdtablecount.c
10 .endif
11 
12 INTERNALLIB=
13 
14 CFLAGS+= -I${.CURDIR}
15 
16 WARNS?=	3
17 
18 .include <bsd.lib.mk>
19