c2f2774dd5
Makefile 1.42 -> 1.44 docs.sgml 1.50 -> 1.52 publish.sgml 1.12 -> 1.13 support.sgml 1.92 -> 1.93 copyright/Makefile 1.3 -> 1.4 news/Makefile 1.5 -> 1.6 ports/Makefile 1.14 -> 1.15 search/index-site.sgml 1.16 -> 1.17 + New translations: copyright/copyright.sgml news/news.sgml + Obsoleted file: branch.sgml Submitted by: Motoyuki Konno <motoyuki@snipe.rim.or.jp>
72 lines
1.2 KiB
Makefile
72 lines
1.2 KiB
Makefile
# $Id: Makefile,v 1.27 1998-08-20 04:12:11 hanai Exp $
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.44
|
|
|
|
.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+= 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+= ports
|
|
SUBDIR+= projects
|
|
SUBDIR+= releases
|
|
|
|
# Non-SGML
|
|
#SUBDIR+= gifs
|
|
#SUBDIR+= cgi
|
|
|
|
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
|
# Extern
|
|
#SUBDIR+= tutorials
|
|
|
|
DOCSUBDIR= FAQ handbook
|
|
.endif
|
|
|
|
# Subdirectories that have linuxdoc docs and makefiles that use
|
|
# <bsd.sgml.mk>.
|
|
|
|
FORMATS?= "html roff"
|
|
SGMLOPTS= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -e EUC-JP
|
|
|
|
|
|
WEBDIR= data/ja
|
|
|
|
.include "../web.mk"
|
|
|