2020-11-12 20:53:43 +03:00
|
|
|
# $NetBSD: Makefile.inc,v 1.9 2020/11/12 17:53:43 nia Exp $
|
2013-02-23 18:16:49 +04:00
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
TOPDIR= ${NETBSDSRCDIR}/external/bsd/kyua-cli
|
|
|
|
SRCDIR= ${TOPDIR}/dist
|
|
|
|
|
|
|
|
# Name of the private libraries (without their lib prefix) to depend on.
|
|
|
|
KYUA_LIBS?=
|
|
|
|
|
|
|
|
# Layout of installed files.
|
|
|
|
KYUA_BINDIR= /usr/bin
|
|
|
|
KYUA_CONFDIR= /etc/kyua
|
Reorg docs, part 1:
Move all the reference manuals to subdirs of /usr/share/doc/reference.
We have subdirs ref1-ref9, corresponding to man page sections 1-9.
Everything that's the reference manual for a program (sections 1, 6,
8), C interface (sections 2, 3), driver or file system (section 4),
format or configuration (section 5), or kernel internal interface
(section 9) belongs in here.
Section 7 is a little less clear: some things that might go in section
7 if they were a man page aren't really reference manuals. So I'm only
putting things in reference section 7 that are (to me) clearly
reference material, rather than e.g. tutorials, guides, FAQs, etc.
This obviously leaves some room for debate, especially without first
editing the docs with this distinction in mind, but if people hate
what I've done things can always be moved again.
Note also that while roff macro man pages traditionally go in section
7, I have put all the roff documentation (macros, tools, etc.) in one
place in reference/ref1/roff. This will make it easier to find and
also easier to edit it into some kind of coherent form.
2014-07-05 23:22:41 +04:00
|
|
|
KYUA_DOCDIR= /usr/share/doc/reference/ref1/kyua/kyua-cli
|
2013-02-23 18:16:49 +04:00
|
|
|
KYUA_EXAMPLESDIR= /usr/share/examples/kyua-cli
|
|
|
|
KYUA_MISCDIR= /usr/share/kyua-cli/misc
|
|
|
|
KYUA_STOREDIR= /usr/share/kyua-cli/store
|
|
|
|
KYUA_TESTERSDIR= /usr/libexec
|
|
|
|
KYUA_TESTSDIR= ${TESTSBASE}
|
|
|
|
|
|
|
|
KYUA_TARNAME!= grep 'define PACKAGE_TARNAME' ${TOPDIR}/config.h \
|
|
|
|
| cut -d '"' -f 2
|
2013-10-19 03:41:40 +04:00
|
|
|
cookie-tarname: cookie-tarname-2
|
|
|
|
@cmp -s cookie-tarname cookie-tarname-2 \
|
|
|
|
|| cp cookie-tarname-2 cookie-tarname
|
|
|
|
cookie-tarname-2: .PHONY
|
|
|
|
@echo "${KYUA_TARNAME}" >cookie-tarname-2
|
|
|
|
CLEANFILES+= cookie-tarname cookie-tarname-2
|
|
|
|
|
2013-02-23 18:16:49 +04:00
|
|
|
KYUA_VERSION!= grep 'define VERSION' ${TOPDIR}/config.h | cut -d '"' -f 2
|
2013-10-19 03:41:40 +04:00
|
|
|
cookie-version: cookie-version-2
|
|
|
|
@cmp -s cookie-version cookie-version-2 \
|
|
|
|
|| cp cookie-version-2 cookie-version
|
|
|
|
cookie-version-2: .PHONY
|
|
|
|
@echo "${KYUA_VERSION}" >cookie-version-2
|
|
|
|
CLEANFILES+= cookie-version cookie-version-2
|
2013-02-23 18:16:49 +04:00
|
|
|
|
|
|
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
|
|
|
|
|
|
|
# Not all source files need these settings, but it's just easier to
|
|
|
|
# set them in all cases.
|
|
|
|
CPPFLAGS+= -DKYUA_CONFDIR=\"${KYUA_CONFDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_DOCDIR=\"${KYUA_DOCDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_EXAMPLESDIR=\"${KYUA_EXAMPLESDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_MISCDIR=\"${KYUA_MISCDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_STOREDIR=\"${KYUA_STOREDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_TESTERSDIR=\"${KYUA_TESTERSDIR}\"
|
|
|
|
CPPFLAGS+= -DKYUA_TESTSDIR=\"${KYUA_TESTSDIR}\"
|
|
|
|
|
|
|
|
CPPFLAGS+= -I${TOPDIR} # For config.h.
|
|
|
|
CPPFLAGS+= -I${TOPDIR}/lib # For utils/defs.hpp.
|
|
|
|
CPPFLAGS+= -I${SRCDIR}
|
|
|
|
|
|
|
|
.for lib in ${KYUA_LIBS}
|
2014-02-15 23:42:10 +04:00
|
|
|
LIBOBJDIR_${lib}!= cd ${TOPDIR}/lib/${lib}; ${PRINTOBJDIR}
|
|
|
|
LDADD+= ${LIBOBJDIR_${lib}}/lib${lib}.a
|
|
|
|
DPADD+= ${LIBOBJDIR_${lib}}/lib${lib}.a
|
2013-02-23 18:16:49 +04:00
|
|
|
.endfor
|
|
|
|
|
|
|
|
.if !empty(KYUA_LIBS:Mutils)
|
2020-11-12 20:53:43 +03:00
|
|
|
LDADD+= -llutok -lsqlite3 -lm
|
|
|
|
DPADD+= ${LIBLUTOK} ${LIBSQLITE} ${LIBM}
|
2013-02-23 18:16:49 +04:00
|
|
|
.endif
|
|
|
|
|
2013-10-19 03:41:40 +04:00
|
|
|
MANPAGE_DEPS = cookie-tarname cookie-version
|
2013-02-23 18:16:49 +04:00
|
|
|
BUILD_MANPAGE = \
|
|
|
|
sed -e 's,__CONFDIR__,${KYUA_CONFDIR},g' \
|
|
|
|
-e 's,__DOCDIR__,${KYUA_DOCDIR},g' \
|
|
|
|
-e 's,__EGDIR__,${KYUA_EXAMPLESDIR},g' \
|
|
|
|
-e 's,__MISCDIR__,${KYUA_MISCDIR},g' \
|
|
|
|
-e 's,__PACKAGE__,${KYUA_TARNAME},g' \
|
|
|
|
-e 's,__STOREDIR__,${KYUA_STOREDIR},g' \
|
|
|
|
-e 's,__TESTERSDIR__,${KYUA_TESTERSDIR},g' \
|
|
|
|
-e 's,__TESTSDIR__,${KYUA_TESTSDIR},g' \
|
|
|
|
-e 's,__VERSION__,${KYUA_VERSION},g' \
|
|
|
|
<${SRCDIR}/doc/$${name}.in >$${name}.tmp; \
|
|
|
|
mv $${name}.tmp $${name}
|