alpha/Makefile 1.3 -> 1.4 commercial/Makefile 1.4 -> 1.5 copyright/Makefile 1.2 -> 1.3 docproj/Makefile 1.5 -> 1.6 gallery/Makefile 1.4 -> 1.5 internal/Makefile 1.9 -> 1.10 news/Makefile 1.4 -> 1.5 ports/Makefile 1.13 -> 1.14 projects/Makefile 1.4 -> 1.5 releases/Makefile 1.12 -> 1.13 search/Makefile 1.3 -> 1.4 security/Makefile 1.3 -> 1.4 Submitted by: Motoyuki Konno <motoyuki@snipe.rim.or.jp>
25 lines
639 B
Makefile
25 lines
639 B
Makefile
# $Id: Makefile,v 1.4 1998-08-12 09:04:07 hanai Exp $
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.4
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.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.sgml: atoz.sgml site.sgml
|
|
atoz.sgml: web.atoz
|
|
sort -fu web.atoz | perl ../../en/search/atoz.pl > ${.TARGET}
|
|
site.sgml: ../../en/search/site.map
|
|
perl ../../en/search/site.pl < ${.ALLSRC} > ${.TARGET}
|
|
|
|
.include "../../web.mk"
|