mirror of
https://github.com/opnsense/src.git
synced 2026-06-23 15:40:20 -04:00
These libraries don't install anything, so they shouldn't have a PACKAGE setting. This avoids surprising behaviour in future if e.g. manpages are added to an internal library. Reported by: des Differential Revision: https://reviews.freebsd.org/D51901
18 lines
329 B
Makefile
18 lines
329 B
Makefile
LIB= openbsd
|
|
SRCS= imsg-buffer.c \
|
|
imsg.c \
|
|
ohash.c \
|
|
recallocarray.c
|
|
.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
|
|
|
|
INTERNALLIB=
|
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.lib.mk>
|