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