a7cc90d656
1.10 -> 1.14 fdp-primer/Makefile 1.9 -> 1.25 fdp-primer/book.sgml 1.19 -> 1.21 fdp-primer/overview/chapter.sgml 1.10 -> 1.12 fdp-primer/see-also/chapter.sgml 1.14 -> 1.15 fdp-primer/structure/chapter.sgml 1.25 -> 1.28 fdp-primer/tools/chapter.sgml 1.9 -> 1.38 fdp-primer/writing-style/chapter.sgml Submitted by: TAOKA Fumiyoshi <fmysh at iijmio-mail dot jp> Reviewed by: Ryusuke Suzuki <ryusuke at nucl dot sci dot hokudai dot ac dot jp>, Hiroo Ono <hiroo at oikumene dot gcd dot org> Reference: [doc-jp-work 862, 893, 913, 920, 922]
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Build the FreeBSD Documentation Project Primer (Japanese).
|
|
#
|
|
# Original revision: 1.14
|
|
#
|
|
|
|
MAINTAINER= doc-jp@jp.FreeBSD.org
|
|
|
|
DOC?= book
|
|
|
|
FORMATS?= html-split html
|
|
|
|
INSTALL_COMPRESSED?= gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
#
|
|
# SRCS lists the individual SGML files that make up the document. Changes
|
|
# to any of these files will force a rebuild
|
|
#
|
|
|
|
# SGML content
|
|
SRCS= book.sgml
|
|
SRCS+= overview/chapter.sgml
|
|
SRCS+= psgml-mode/chapter.sgml
|
|
SRCS+= see-also/chapter.sgml
|
|
SRCS+= sgml-markup/chapter.sgml
|
|
SRCS+= sgml-primer/chapter.sgml
|
|
SRCS+= stylesheets/chapter.sgml
|
|
SRCS+= structure/chapter.sgml
|
|
SRCS+= doc-build/chapter.sgml
|
|
SRCS+= the-website/chapter.sgml
|
|
SRCS+= tools/chapter.sgml
|
|
SRCS+= translations/chapter.sgml
|
|
SRCS+= writing-style/chapter.sgml
|
|
|
|
|
|
SRCS+= examples/appendix.sgml
|
|
|
|
# Images from the cross-document image library
|
|
#IMAGES_LIB= callouts/1.png
|
|
#IMAGES_LIB+= callouts/2.png
|
|
#IMAGES_LIB+= callouts/3.png
|
|
#IMAGES_LIB+= callouts/4.png
|
|
#IMAGES_LIB+= callouts/5.png
|
|
|
|
# Entities
|
|
SRCS+= chapters.ent
|
|
|
|
URL_RELPREFIX?= ../../../..
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|