2000-01-06 13:51:59 +01:00
|
|
|
#
|
2001-07-30 15:31:59 +02:00
|
|
|
# $FreeBSD: www/ja/tutorials/Makefile,v 1.8 2000/11/07 11:38:10 kuriyama Exp $
|
2000-01-06 13:51:59 +01:00
|
|
|
#
|
2001-07-30 15:31:59 +02:00
|
|
|
# Original revision: 1.11
|
2000-01-06 13:51:59 +01:00
|
|
|
#
|
|
|
|
# Build the FreeBSD tutorials/articles outside of the www tree, and then
|
|
|
|
# install them in to the right place.
|
|
|
|
|
2000-11-07 12:38:10 +01:00
|
|
|
.if exists(../Makefile.conf)
|
|
|
|
.include "../Makefile.conf"
|
|
|
|
.endif
|
|
|
|
.if exists(../Makefile.inc)
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.endif
|
2000-10-02 11:16:24 +02:00
|
|
|
|
2000-01-06 13:51:59 +01:00
|
|
|
DOCS = index.sgml
|
|
|
|
|
2000-04-23 16:33:58 +02:00
|
|
|
DIRS_TO_CLEAN = ../../../doc/ja_JP.eucJP/articles \
|
2000-07-20 14:42:51 +02:00
|
|
|
../../../doc/ja_JP.eucJP/books/porters-handbook \
|
2000-04-23 16:33:58 +02:00
|
|
|
../../../doc/ja_JP.eucJP/books/ppp-primer
|
|
|
|
# ../../../doc/ja_JP.eucJP/books/fdp-primer \
|
|
|
|
|
|
|
|
all afterinstall:
|
2000-10-02 09:54:41 +02:00
|
|
|
(cd ${.CURDIR}/../../../doc/ja_JP.eucJP/articles && ${MAKE} 'FORMATS=html html-split' 'DESTDIR=${DESTDIR}/data/ja/tutorials/$${.CURDIR:T}' ${.TARGET:S/afterinstall/install/})
|
|
|
|
# (cd ${.CURDIR}/../../../doc/ja_JP.eucJP/books/fdp-primer && ${MAKE} 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/ja/tutorials/docproj-primer ${.TARGET:S/afterinstall/install/})
|
|
|
|
(cd ${.CURDIR}/../../../doc/ja_JP.eucJP/books/porters-handbook && ${MAKE} 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/ja/porters-handbook ${.TARGET:S/afterinstall/install/})
|
|
|
|
(cd ${.CURDIR}/../../../doc/ja_JP.eucJP/books/ppp-primer && ${MAKE} 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/ja/tutorials/ppp ${.TARGET:S/afterinstall/install/})
|
2000-01-06 13:51:59 +01:00
|
|
|
|
|
|
|
### Revision checking
|
2000-10-02 11:16:24 +02:00
|
|
|
REVCHECK= YES
|
2000-01-06 13:51:59 +01:00
|
|
|
|
2000-11-07 12:38:10 +01:00
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|