Makefile framework to pull the DocBook FAQ in to the web site.

This commit is contained in:
Nik Clayton 1999-08-19 20:55:58 +00:00
parent eb6593059c
commit 53e1d12242
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=5408
3 changed files with 33 additions and 0 deletions
es/FAQ
ja/FAQ
zh/FAQ

11
es/FAQ/Makefile Normal file
View file

@ -0,0 +1,11 @@
#
# $Id: Makefile,v 1.1 1999-08-19 20:53:38 nik Exp $
#
# Build the FreeBSD FAQ *outside* of the www tree, and install it
# in to the right place as necessary.
all install clean:
(cd ../../../doc/es_ES.ISO_8859-1/books/faq; make 'FORMATS=html-split html' DESTDIR=${DESTDIR}/data/es/FAQ ${.TARGET})
.if make(install)
(cd ${DESTDIR}/data/es/FAQ; ln -sf index.html FAQ.html)
.endif

11
ja/FAQ/Makefile Normal file
View file

@ -0,0 +1,11 @@
#
# $Id: Makefile,v 1.1 1999-08-19 20:51:34 nik Exp $
#
# Build the FreeBSD FAQ *outside* of the www tree, and install it
# in to the right place as necessary.
all install clean:
(cd ../../../doc/ja_JP.eucJP/books/faq; make 'FORMATS=html-split html' DESTDIR=${DESTDIR}/data/ja/FAQ ${.TARGET})
.if make(install)
(cd ${DESTDIR}/data/ja/FAQ; ln -sf index.html FAQ.html)
.endif

11
zh/FAQ/Makefile Normal file
View file

@ -0,0 +1,11 @@
#
# $Id: Makefile,v 1.1 1999-08-19 20:55:58 nik Exp $
#
# Build the FreeBSD FAQ *outside* of the www tree, and install it
# in to the right place as necessary.
all install clean:
(cd ../../../doc/zh_TW.Big5/books/faq; make 'FORMATS=html-split html' DESTDIR=${DESTDIR}/data/zh/FAQ ${.TARGET})
.if make(install)
(cd ${DESTDIR}/data/zh/FAQ; ln -sf index.html FAQ.html)
.endif