2f02600abf
by hastctl(8), hastd(8) and auditdistd(8) and will soon be also used by casperd(8) and its services. There is no documentation and pjdlog.h header file is not installed in /usr/include/ to keep it private. Unfortunately we don't have /lib/private/ at this point, only /usr/lib/private/, so the library is installed in /lib/. Sponsored by: The FreeBSD Foundation
22 lines
191 B
Makefile
22 lines
191 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= pjdlog
|
|
SRCS= pjdlog.c
|
|
|
|
SHLIB_MAJOR= 0
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.lib.mk>
|