An alternative symlink method -- symlink to the directories, rather than

the directory contents.  The previous mechanism didn't work in the presence
of CVS/ directories (which didn't show up in my testing).
This commit is contained in:
Nik Clayton 2001-04-17 12:18:20 +00:00
parent f2440ca621
commit 9fbb557a45
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=9215
2 changed files with 24 additions and 5 deletions

View file

@ -1,5 +1,5 @@
#
# $FreeBSD: www/en/docs/Makefile,v 1.3 2001/02/24 18:04:10 nik Exp $i
# $FreeBSD: www/en/doc/Makefile,v 1.1 2001/04/17 09:05:43 nik Exp $i
#
# Build the FreeBSD documentation *outside* of the www tree, and install it
# in to the right place as necessary.
@ -9,5 +9,12 @@
# requirements here.
#
all install clean:
all:
(unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split all)
(unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split DOCDIR=${.CURDIR} install)
install clean:
(unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split DOCDIR=${DESTDIR}/data/doc ${.TARGET})
.if make(clean)
rm -rf en* handbook faq
.endif