Following changes in the English version are merged.

alpha/Makefile       1.2  -> 1.3
  commercial/Makefile  1.3  -> 1.4
  copyright/Makefile   1.1  -> 1.2
  docproj/Makefile     1.4  -> 1.5
  gallery/Makefile     1.3  -> 1.4
  internal/Makefile    1.8  -> 1.9
  news/Makefile        1.3  -> 1.4
  ports/Makefile       1.8  -> 1.13
  projects/Makefile    1.3  -> 1.4
  releases/Makefile    1.11 -> 1.12
  search/Makefile      1.2  -> 1.3
  security/Makefile    1.2  -> 1.3

Submitted by: Motoyuki Konno <motoyuki@snipe.rim.or.jp>
This commit is contained in:
Hiroyuki Hanai 1998-08-11 05:38:33 +00:00
parent 69d7161944
commit df0c36178a
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=3319
12 changed files with 90 additions and 30 deletions
ja
alpha
commercial
copyright
docproj
gallery
internal
news
ports
projects
releases
search
security

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.3 1998-08-10 12:59:11 kuriyama Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:30 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.2
# Original revision: 1.3
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS= alpha.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.3 1998-08-09 16:22:16 kuriyama Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:30 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.3
# Original revision: 1.4
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS = commercial.sgml
# DOCS+= consulting.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.3 1998-08-09 16:22:16 kuriyama Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:30 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.1
# Original revision: 1.2
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS= license.sgml
DOCS+= daemon.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.6 1998-08-09 16:22:16 kuriyama Exp $
# $Id: Makefile,v 1.7 1998-08-11 05:38:30 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.4
# Original revision: 1.5
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS= current.sgml
DOCS+= doc-set.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.3 1998-08-09 16:22:17 kuriyama Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:31 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.3
# Original revision: 1.4
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS = gallery.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.4 1998-08-10 12:59:12 kuriyama Exp $
# $Id: Makefile,v 1.5 1998-08-11 05:38:31 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.8
# Original revision: 1.9
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
# DOCS= photos.sgml
DOCS+= internal.sgml
@ -9,7 +13,7 @@ DOCS+= machines.sgml
DOCS+= mirror.sgml
DOCS+= resignation.sgml
# INDEXLINK= internal.html
INDEXLINK= internal.html
# DATA+= README.mirror

View file

@ -1,6 +1,11 @@
# $Id: Makefile,v 1.3 1998-08-09 16:22:17 kuriyama Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:32 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.3
# Original revision: 1.4
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS= qnewsletter.sgml
DOCS+= press.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.7 1998-07-16 17:17:18 wosch Exp $
# $Id: Makefile,v 1.8 1998-08-11 05:38:32 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.8
# Original revision: 1.13
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
PORTINDEX= perl ./portindex
INDEX= INDEX
@ -10,17 +14,32 @@ COOKIE= ${INDEX} Makefile.gen
.if exists(Makefile.gen)
.include "Makefile.gen"
CLEANFILES+= ${DOCS} Makefile.gen ${INDEX}
.endif
CLEANFILES+= ${DOCS} Makefile.gen ${INDEX} packages.exists
${INDEX}: $${CVSROOT}/${PINDEX},v
cvsindex= $${CVSROOT}/${PINDEX},v
_ALLINSTALL= packages.exists
${INDEX}: ${cvsindex}
cvs -QR co -p ${PINDEX} > ${INDEX}
# build the list of available packages only on the
# main FreeBSD machines
hostname!= hostname
packages.exists: ${cvsindex}
.if ${hostname} == "hub.freebsd.org" || ${hostname} == "freefall.freebsd.org"
../../en/ports/packages > ${.TARGET}
.else
touch ${.TARGET}
.endif
Makefile.gen: index.sgml .NOTMAIN
echo DOCS= *.sgml > Makefile.gen
${MAKE} ${MAKEFLAGS} ${.IMPSRC}
index.sgml: ${INDEX} portindex ports.inc categories.ja_JP.EUC .NOTMAIN
index.sgml: ${INDEX} packages.exists portindex ports.inc categories.ja_JP.EUC .NOTMAIN
rm -f *.sgml
${PORTINDEX} ${INDEX}

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.4 1998-08-11 03:46:55 hanai Exp $
# $Id: Makefile,v 1.5 1998-08-11 05:38:32 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.3
# Original revision: 1.4
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS= projects.sgml
DOCS+= mozilla.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.3 1998-07-27 04:47:00 hanai Exp $
# $Id: Makefile,v 1.4 1998-08-11 05:38:32 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.11
# Original revision: 1.12
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
DOCS?= index.sgml snapshots.sgml

View file

@ -1,6 +1,10 @@
# $Id: Makefile,v 1.2 1998-08-09 16:22:18 kuriyama Exp $
# $Id: Makefile,v 1.3 1998-08-11 05:38:32 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.2
# Original revision: 1.3
.if exists("../Makefile.conf")
.include "../Makefile.conf"
.endif
# These are turned into validated, normalized HTML files.

View file

@ -1,9 +1,9 @@
# $Id: Makefile,v 1.6 1998-08-09 16:22:19 kuriyama Exp $
# $Id: Makefile,v 1.7 1998-08-11 05:38:33 hanai Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.2
# Original revision: 1.3
.if exists(Makefile.conf)
.include "Makefile.conf"
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
DOCS=