daemon.sgml: 1.5 --> 1.6 docs.sgml: 1.40 --> 1.43 internet.sgml: 1.10 --> 1.11 newsflash.sgml: 1.74 --> 1.81 security.sgml: 1.7 --> 1.8 Add machines.sgml to Makefile. Submitted by: HIROSE Shouichi <shou@kt.rim.or.jp> Nishika <nishika@cheerful.com> Motoyuki Konno <motoyuki@snipe.rim.or.jp>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $Id: Makefile,v 1.12 1998-06-23 15:15:00 kuriyama Exp $
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.24
|
|
|
|
.if exists(Makefile.conf)
|
|
.include "Makefile.conf"
|
|
.endif
|
|
|
|
# These are turned into validated, normalized HTML files.
|
|
|
|
DOCS= about.sgml applications.sgml auditors.sgml availability.sgml branch.sgml
|
|
DOCS+= commercial.sgml daemon.sgml docproj.sgml docs.sgml
|
|
DOCS+= features.sgml gallery.sgml index-site.sgml register.sgml
|
|
DOCS+= internet.sgml license.sgml mailto.sgml mirror.sgml newsflash.sgml
|
|
DOCS+= publish.sgml search.sgml searchhints.sgml
|
|
DOCS+= send-pr.sgml security.sgml support.sgml where.sgml resignation.sgml
|
|
DOCS+= machines.sgml
|
|
DOCS+= jabout.sgml
|
|
#DOCS+= cgallery.sgml npgallery.sgml pgallery.sgml
|
|
DOCS+= y2kbug.sgml search-mid.sgml
|
|
|
|
CLEANFILES+=atoz.sgml
|
|
|
|
# These will be directly installed.
|
|
|
|
DATA= index.html
|
|
|
|
# Files or targets listed here are defined in this file.
|
|
|
|
index-site.sgml: atoz.sgml
|
|
atoz.sgml: web.atoz
|
|
sort -fu web.atoz | perl ../atoz.pl > ${.TARGET}
|
|
|
|
# Subdirectories
|
|
|
|
#SUBDIR= cgi commercial gifs ports releases tutorials
|
|
SUBDIR= ports releases
|
|
|
|
# Subdirectories that have linuxdoc docs and makefiles that use
|
|
# <bsd.sgml.mk>.
|
|
|
|
DOCSUBDIR= FAQ handbook
|
|
FORMATS?= "html roff"
|
|
SGMLOPTS= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -e EUC-JP
|
|
|
|
|
|
WEBDIR= ja_JP.EUC
|
|
|
|
.include "../web.mk"
|
|
|