549131b114
1. Add .sgml -> .revinc rule in web.mk. This tells how to make SGML include file which contains revision information. 2. Add ja/revcheck script. This script makes revision information from English SGML file and localized one. 3. Add *.revinc files into GENDOCS in localized Makefile. This will generate *.revinc files from each *.sgml files. 4. Add %rev.diff entity into localized includes.sgml. 5. Add statement to include *.revinc for each *.sgml files. (this will be followed separately.) Reviewed and not objected by: Doc Team
76 lines
1.3 KiB
Makefile
76 lines
1.3 KiB
Makefile
# $FreeBSD: www/ja/Makefile,v 1.36 1999/11/07 11:33:12 kuriyama Exp $
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.50
|
|
|
|
.if exists(Makefile.conf)
|
|
.include "Makefile.conf"
|
|
.endif
|
|
|
|
# These are turned into validated, normalized HTML files.
|
|
|
|
DOCS= applications.sgml
|
|
DOCS+= auditors.sgml
|
|
DOCS+= availability.sgml
|
|
DOCS+= docs.sgml
|
|
DOCS+= features.sgml
|
|
DOCS+= register.sgml
|
|
DOCS+= index.sgml
|
|
DOCS+= internet.sgml
|
|
DOCS+= mailto.sgml
|
|
DOCS+= publish.sgml
|
|
DOCS+= send-pr.sgml
|
|
DOCS+= support.sgml
|
|
DOCS+= where.sgml
|
|
DOCS+= y2kbug.sgml
|
|
|
|
# Japanese-only file
|
|
DOCS+= jabout.sgml
|
|
|
|
CLEANFILES+=atoz.sgml site.sgml
|
|
|
|
# These will be directly installed.
|
|
|
|
DATA= index.html
|
|
|
|
# Subdirectories
|
|
# SGML
|
|
SUBDIR= security
|
|
SUBDIR+= commercial
|
|
SUBDIR+= docproj
|
|
SUBDIR+= news
|
|
SUBDIR+= alpha
|
|
SUBDIR+= internal
|
|
SUBDIR+= copyright
|
|
SUBDIR+= search
|
|
SUBDIR+= gallery
|
|
SUBDIR+= projects
|
|
SUBDIR+= releases
|
|
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
|
SUBDIR+= ports
|
|
.endif
|
|
|
|
|
|
# Japanese only.
|
|
SUBDIR+= java
|
|
|
|
# Non-SGML
|
|
#SUBDIR+= gifs
|
|
#SUBDIR+= cgi
|
|
|
|
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
|
# Extern
|
|
#SUBDIR+= tutorials
|
|
|
|
DOCSUBDIR= FAQ handbook
|
|
.endif
|
|
SGMLOPTS= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -e EUC-JP
|
|
|
|
WEBDIR= data/ja
|
|
|
|
### Revision checking
|
|
REVFILES= ${DOCS:M*.sgml:S/.sgml$/.revinc/g}
|
|
BUILDTOP= ..
|
|
DIR_IN_LOCAL= .
|
|
|
|
.include "../web.mk"
|
|
|