2014-08-06 22:46:15 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2016-02-04 21:16:35 +00:00
|
|
|
PACKAGE=lib${LIB}
|
2015-11-04 07:20:55 +00:00
|
|
|
LIB= openbsd
|
2018-12-05 10:58:02 +00:00
|
|
|
SRCS= imsg-buffer.c \
|
2015-11-14 23:13:15 +00:00
|
|
|
imsg.c \
|
2015-11-14 23:07:38 +00:00
|
|
|
ohash.c
|
2018-12-05 10:58:02 +00:00
|
|
|
.if !defined(BOOTSTRAPPING)
|
|
|
|
# Skip getdtablecount.c when bootstrapping since it doesn't compile for Linux
|
|
|
|
# and is not used by any of the bootstrap tools
|
|
|
|
SRCS+= getdtablecount.c
|
|
|
|
.endif
|
|
|
|
|
2014-08-06 22:46:15 +00:00
|
|
|
INTERNALLIB=
|
|
|
|
|
2015-11-14 23:07:38 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
|
2014-08-06 22:46:15 +00:00
|
|
|
WARNS= 3
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|