freebsd-dev/lib/libpjdlog/Makefile
Pawel Jakub Dawidek 2f02600abf Move my simple logging API to a separate library. It is now already used
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
2013-12-01 09:41:06 +00:00

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>