is not defined. - URL_RELPREFIX must always point the top page's URL (http://www.FreeBSD.org) in relative form, defined in Makefile. - &url.base; can be used in doc/<langcode>/*. It will be replaced with the real URL which points the top page. For translators: Please make sure to define URL_RELPREFIX to point the top page. The localized docs have different directory hierarchy in its URL from the English version. Tested by: den
26 lines
462 B
Makefile
26 lines
462 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Article: Frequently Asked Questions About The FreeBSD Mailing Lists
|
|
|
|
DOC?= article
|
|
|
|
FORMATS?= html
|
|
|
|
INSTALL_COMPRESSED?=gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
WITH_ARTICLE_TOC?=YES
|
|
|
|
#
|
|
# SRCS lists the individual SGML files that make up the document. Changes
|
|
# to any of these files will force a rebuild
|
|
#
|
|
|
|
# SGML content
|
|
SRCS= article.sgml
|
|
|
|
URL_RELPREFIX?= ../../../..
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|