doc.relnotes.mk revision 98515
1# $FreeBSD: head/release/doc/share/mk/doc.relnotes.mk 98515 2002-06-20 21:19:49Z bmah $
2
3DOC_PREFIX?= ${RELN_ROOT}/../../../doc
4
5# Find the RELNOTESng document catalogs
6EXTRA_CATALOGS+= ${RELN_ROOT}/${LANGCODE}/share/sgml/catalog
7EXTRA_CATALOGS+= ${RELN_ROOT}/share/sgml/catalog
8
9# Use the appropriate architecture-dependent RELNOTESng stylesheet
10DSLHTML?=	${RELN_ROOT}/share/sgml/default.dsl
11DSLPRINT?=	${RELN_ROOT}/share/sgml/default.dsl
12
13#
14# Tweakable Makefile variables
15#
16# INCLUDE_HISTORIC	Used by relnotes document only.  When set,
17#			causes all release notes entries to be printed,
18#			even those marked as "historic".  If not set
19#			(the default), only print "non-historic"
20#			release note entries.  To designate a release
21#			note entry as "historic", add a role="historic"
22#			attribute to the applicable element(s).
23#
24.if defined(INCLUDE_HISTORIC)
25JADEFLAGS+=	-iinclude.historic
26.else
27JADEFLAGS+=	-ino.include.historic
28.endif
29