Change the Makefile for the french docs.
fr/doc/Makefile: MFen 1.8
This commit is contained in:
parent
2160d984f4
commit
c125471488
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=17890
1 changed files with 55 additions and 0 deletions
55
fr/doc/Makefile
Normal file
55
fr/doc/Makefile
Normal file
|
@ -0,0 +1,55 @@
|
|||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Build the FreeBSD documentation *outside* of the www tree, and install it
|
||||
# in to the right place as necessary.
|
||||
#
|
||||
# This assumes that you have the www/ and doc/ trees checked out beside
|
||||
# one another -- this was always the case anyway, so there are no extra
|
||||
# requirements here.
|
||||
#
|
||||
|
||||
# The FreeBSD French Documentation Project
|
||||
# Original revision: 1.8
|
||||
|
||||
all: all-all all-install all-pgpkeyring
|
||||
|
||||
all-all:
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1; \
|
||||
${MAKE} FORMATS="html-split html" \
|
||||
INSTALL_COMPRESSED= all
|
||||
all-install:
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1; \
|
||||
${MAKE} FORMATS="html-split html" DOCDIR=${.OBJDIR} \
|
||||
INSTALL_COMPRESSED= install
|
||||
all-pgpkeyring:
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1/books/handbook; \
|
||||
${MAKE} \
|
||||
pgpkeyring > ${.OBJDIR}/pgpkeyring.txt
|
||||
|
||||
install clean:
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1; \
|
||||
${MAKE} FORMATS="html-split html" DOCDIR=${DESTDIR}/data/doc \
|
||||
INSTALL_COMPRESSED= ${.TARGET}
|
||||
.if make(install)
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1/books/handbook; \
|
||||
${MAKE} \
|
||||
pgpkeyring > ${DESTDIR}/data/doc/pgpkeyring.txt
|
||||
.endif
|
||||
.if make(clean)
|
||||
${RM} -rf fr* handbook faq pgpkeyring.txt
|
||||
.endif
|
||||
|
||||
.include "${.CURDIR}/../../share/mk/web.site.mk"
|
||||
|
||||
obj: _OBJUSE
|
||||
|
||||
_OBJUSE: .USE
|
||||
@unset DESTDIR || true; \
|
||||
cd ${.CURDIR}/../../../doc/fr_FR.ISO8859-1; \
|
||||
${MAKE} ${.TARGET}
|
Loading…
Reference in a new issue