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

This commit is contained in:
Nik Clayton 1999-08-19 20:45:50 +00:00
parent 93d0c288cf
commit b4be7a34cb
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=5406

11
en/FAQ/Makefile Normal file
View file

@ -0,0 +1,11 @@
#
# $Id: Makefile,v 1.1 1999-08-19 20:45:50 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/en_US.ISO_8859-1/books/faq; make 'FORMATS=html-split html' DESTDIR=${DESTDIR}/data/FAQ ${.TARGET})
.if make(install)
(cd ${DESTDIR}/data/FAQ; ln -sf index.html FAQ.html)
.endif