diff options
author | Dima Dorfman <dd@FreeBSD.org> | 2001-04-29 21:05:12 +0000 |
---|---|---|
committer | Dima Dorfman <dd@FreeBSD.org> | 2001-04-29 21:05:12 +0000 |
commit | 703471ec7f19d2b914e930dbaaac13e8451035e1 (patch) | |
tree | d294a5759450b6a53483381dee5e915499cd45aa /release/doc/en_US.ISO8859-1/readme/Makefile | |
parent | 46157a65d713530b640103823b6928627508526c (diff) | |
download | src-703471ec7f19d2b914e930dbaaac13e8451035e1.tar.gz src-703471ec7f19d2b914e930dbaaac13e8451035e1.zip |
Build system:
o Define a RELN_ROOT variable which points to the root of the relnotes
tree (i.e., src/release/doc).
o By default, define DOC_PREFIX in terms of RELN_ROOT; this gives a
bigger chance of finding the doc/ tree without help in the form of
setting DOC_PREFIX on the command line.
o Respect DOCDIR; `make install` works now.
Approved by: bmah
Notes
Notes:
svn path=/head/; revision=76140
Diffstat (limited to 'release/doc/en_US.ISO8859-1/readme/Makefile')
-rw-r--r-- | release/doc/en_US.ISO8859-1/readme/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/release/doc/en_US.ISO8859-1/readme/Makefile b/release/doc/en_US.ISO8859-1/readme/Makefile index 5cf475181475..adc8a2477860 100644 --- a/release/doc/en_US.ISO8859-1/readme/Makefile +++ b/release/doc/en_US.ISO8859-1/readme/Makefile @@ -1,10 +1,12 @@ # $FreeBSD$ +RELN_ROOT?= ${.CURDIR}/../.. + DOC?= article FORMATS?= html INSTALL_COMPRESSED?= gz INSTALL_ONLY_COMPRESSED?= -EXTRA_CATALOGS+= ../../share/sgml/catalog +EXTRA_CATALOGS+= ${RELN_ROOT}/share/sgml/catalog # # SRCS lists the individual SGML files that make up the document. Changes @@ -20,5 +22,5 @@ SRCS+= obtaining.sgml SRCS+= problems.sgml SRCS+= ack.sgml -DOC_PREFIX?= /usr/doc +.include "${RELN_ROOT}/share/mk/doc.relnotes.mk" .include "${DOC_PREFIX}/share/mk/doc.project.mk" |