1.74 -> 1.75 Makefile 1.5 -> 1.6 doc.ftr 1.121 -> 1.129 docs.sgml 1.8 -> 1.9 search/Makefile 1.71 -> 1.72 search/search.sgml 1.52 -> 1.54 search/web.atoz 1.69 -> 1.72 security/security.sgml
32 lines
828 B
Makefile
32 lines
828 B
Makefile
# $FreeBSD: www/ja/search/Makefile,v 1.11 2000/11/07 11:38:09 kuriyama Exp $
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.9
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
# These are turned into validated, normalized HTML files.
|
|
|
|
DOCS+= index-site.sgml
|
|
DOCS+= search.sgml
|
|
DOCS+= searchhints.sgml
|
|
DOCS+= search-mid.sgml
|
|
|
|
INDEXLINK= search.html
|
|
CLEANFILES+=atoz.sgml site.sgml
|
|
|
|
index-site.html: atoz.sgml site.sgml
|
|
atoz.sgml: web.atoz
|
|
${SORT} -fu ${.ALLSRC} | ${PERL} ${.CURDIR}/../../en/search/atoz.pl > ${.TARGET}
|
|
|
|
site.sgml: ${.CURDIR}/../../en/search/site.map
|
|
${PERL} ${.CURDIR}/../../en/search/site.pl < ${.ALLSRC} > ${.TARGET}
|
|
|
|
### Revision checking
|
|
REVCHECK= YES
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|