- Remove an anchor to doc-jp@jp mailing-list (includes.sgml). - Add new translations: (new) prstats/Makefile (new) -> 1.4 prstats/index.sgml - Merge the following from the English version: 1.77 -> 1.83 Makefile 1.138 -> 1.143 docs.sgml 1.48 -> 1.50 includes.sgml 1.21 -> 1.22 index.xsl 1.46 -> 1.51 publish.sgml 1.4 -> 1.5 relnotes.sgml 1.24 -> 1.26 send-pr.sgml 1.238 -> 1.260 support.sgml 1.54 -> 1.55 where.sgml 1.42 -> 1.43 y2kbug.sgml 1.4 -> 1.7 FAQ/Makefile 1.10 -> 1.11 docproj/submitting.sgml 1.1 -> 1.2 gallery/gallery-entry.xsl 1.5 -> 1.8 handbook/Makefile 1.28 -> 1.30 internal/Makefile 1.20 -> 1.24 internal/developer.sgml 1.19 -> 1.21 internal/internal.sgml 1.13 -> 1.14 internal/statistic.sgml 1.119 -> 1.122 projects/projects.sgml 1.73 -> 1.74 releases/index.sgml 1.12 -> 1.13 releases/snapshots.sgml 1.1 -> 1.3 releases/4.5R/announce.sgml 1.22 -> 1.23 search/index-site.sgml 1.7 -> 1.8 search/search-mid.sgml 1.75 -> 1.76 search/search.sgml 1.6 -> 1.7 search/searchhints.sgml 1.55 -> 1.57 search/web.atoz 1.85 -> 1.91 security/security.sgml 1.11 -> 1.12 tutorials/Makefile 1.21 -> 1.23 tutorials/index.sgml
		
			
				
	
	
		
			98 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # $FreeBSD: www/ja/Makefile,v 1.58 2002/02/11 09:53:56 kuriyama Exp $
 | |
| # The FreeBSD Japanese Documentation Project
 | |
| # Original revision: 1.83
 | |
| 
 | |
| .if exists(../Makefile.conf)
 | |
| .include "../Makefile.conf"
 | |
| .endif
 | |
| .if exists(../Makefile.inc)
 | |
| .include "../Makefile.inc"
 | |
| .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+= relnotes.sgml
 | |
| DOCS+= send-pr.sgml
 | |
| DOCS+= support.sgml
 | |
| DOCS+= where.sgml 
 | |
| DOCS+= y2kbug.sgml 
 | |
| 
 | |
| # Japanese-only file
 | |
| DOCS+= jabout.sgml
 | |
| 
 | |
| # These will be directly installed.
 | |
| 
 | |
| #DATA=	favicon.ico
 | |
| #DATA+=	robots.txt
 | |
| #DATA+=	freebsd.css
 | |
| 
 | |
| # Subdirectories
 | |
| # SGML
 | |
| SUBDIR=	 security
 | |
| SUBDIR+= commercial
 | |
| SUBDIR+= docproj
 | |
| SUBDIR+= news
 | |
| #SUBDIR+= advocacy
 | |
| 
 | |
| SUBDIR+= internal
 | |
| SUBDIR+= java
 | |
| SUBDIR+= copyright
 | |
| SUBDIR+= search
 | |
| SUBDIR+= gallery
 | |
| SUBDIR+= projects
 | |
| SUBDIR+= prstats
 | |
| SUBDIR+= platforms
 | |
| SUBDIR+= releases
 | |
| #SUBDIR+= releng
 | |
| SUBDIR+= smp
 | |
| SUBDIR+= conspectus
 | |
| #SUBDIR+= gnome
 | |
| #SUBDIR+= donations
 | |
| .if !defined(WEB_ONLY) || empty(WEB_ONLY)
 | |
| SUBDIR+= ports
 | |
| SUBDIR+= doc
 | |
| # .endif
 | |
| # .if defined(BUILD_RELNOTES)
 | |
| # SUBDIR+= relnotes
 | |
| .endif
 | |
| 
 | |
| # These *must* be listed after the "doc" subdir, as they create symlinks
 | |
| # in to it.
 | |
| .if !defined(WEB_ONLY) || empty(WEB_ONLY)
 | |
| SUBDIR+= tutorials
 | |
| 
 | |
| #DOCSUBDIR=	FAQ handbook
 | |
| .endif
 | |
| 
 | |
| # Non-SGML
 | |
| #SUBDIR+= gifs
 | |
| #SUBDIR+= cgi
 | |
| 
 | |
| SGMLFLAGS=	-links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -e EUC-JP
 | |
| 
 | |
| WEBDIR=		data/ja
 | |
| 
 | |
| # index.html is special, and generated from index.xsl and news/news.xml
 | |
| DATA+=		index.html
 | |
| CLEANFILES+=	index.html
 | |
| 
 | |
| index.html: index.xsl news/news.xml news/press.xml includes.xsl news/includes.xsl
 | |
| 	${XSLTPROC} ${XSLTPROCOPTS} -o index.html \
 | |
| 		${.CURDIR}/index.xsl ${.CURDIR}/news/news.xml
 | |
| .if !defined(NO_TIDY)
 | |
| 	-${TIDY} ${TIDYOPTS} ${.TARGET}
 | |
| .endif
 | |
| 
 | |
| ### Revision checking
 | |
| REVCHECK=	yes
 | |
| 
 | |
| .include "${WEB_PREFIX}/share/mk/web.site.mk"
 |