diff --git a/ja/FAQ/Makefile b/ja/FAQ/Makefile index 5c3ded0d6a..a7fdaf4f66 100644 --- a/ja/FAQ/Makefile +++ b/ja/FAQ/Makefile @@ -1,11 +1,12 @@ # -# $Id: Makefile,v 1.1 1999-08-19 20:51:34 nik Exp $ +# $Id: Makefile,v 1.2 1999-09-03 22:39:48 kuriyama Exp $ +# Original revision: 1.2 # # 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}) + (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 diff --git a/ja/handbook/Makefile b/ja/handbook/Makefile index 70d650e766..eab027f972 100644 --- a/ja/handbook/Makefile +++ b/ja/handbook/Makefile @@ -1,14 +1,19 @@ # -# $Id: Makefile,v 1.3 1999-08-19 20:42:40 nik Exp $ -# Original Revision: 1.1 +# $Id: Makefile,v 1.4 1999-09-03 22:39:48 kuriyama Exp $ +# Original Revision: 1.3 # # Build the FreeBSD Handbook *outside* of the www tree, and install it # in to the right place as necessary. # +# The Handbook is no longer completely self contained in +# doc/ja_JP.eucJP/books/handbook, (it requires support files outside of +# this directory) and it is much simpler to build it outside the web tree +# than it is to make a nest of symlinks to try and build it inside the tree. +# # 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. # all install clean: - (cd ../../../doc/ja_JP.eucJP/books/handbook; make FORMATS=html-split DESTDIR=${DESTDIR}/data/ja/handbook ${.TARGET}) + (cd ../../../doc/ja_JP.eucJP/books/handbook && make FORMATS=html-split DESTDIR=${DESTDIR}/data/ja/handbook ${.TARGET})