26 lines
627 B
Makefile
26 lines
627 B
Makefile
# $FreeBSD: www/es/search/Makefile,v 1.3 2000/11/29 23:57:09 kuriyama Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
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: site.map
|
|
${PERL} ${.CURDIR}/../../en/search/site.pl < ${.ALLSRC} > ${.TARGET}
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|