b4346b9b2d
- Reflect the rename in referencing files Approved by: doceng (implicit)
26 lines
539 B
Makefile
26 lines
539 B
Makefile
#
|
|
# Build the Handbook with just the content from this chapter.
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# Build the FreeBSD Handbook (Brazilian Portuguese).
|
|
#
|
|
# The FreeBSD Documentation Project
|
|
# The FreeBSD Brazilian Portuguese Documentation Project
|
|
#
|
|
# Original revision: 1.1
|
|
#
|
|
|
|
CHAPTERS= pgpkeys/chapter.xml
|
|
|
|
PGPKEYS!= perl -ne 'm/\"([\w-]+.key)\"/ && print "$$1\n"' \
|
|
${DOC_PREFIX}/share/pgpkeys/pgpkeys.ent
|
|
SRCS+= ${PGPKEYS}
|
|
|
|
VPATH= ..
|
|
|
|
MASTERDOC= ${.CURDIR}/../${DOC}.${DOCBOOKSUFFIX}
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../../..
|
|
|
|
.include "../Makefile"
|