]> git.saurik.com Git - apt.git/blame - doc/ja/makefile
Make apt proxy options have the highest priority, unified proxy determining code.
[apt.git] / doc / ja / makefile
CommitLineData
0ee9ebde
AL
1# -*- make -*-
2BASE=../..
3SUBDIR=doc/ja
4
5# Bring in the default rules
6include ../../buildlib/defaults.mak
7
5d909e1f
CP
8# Do not use XMLTO, build the manpages directly with XSLTPROC
9XSLTPROC=/usr/bin/xsltproc
10STYLESHEET=./style.ja.xsl
11
12
0ee9ebde 13# Man pages
5d909e1f
CP
14SOURCE = apt-cache.ja.8 apt-get.ja.8 apt-cdrom.ja.8 apt.conf.ja.5 \
15 sources.list.ja.5 apt-config.ja.8 apt-sortpkgs.ja.1 \
16 apt-ftparchive.ja.1 apt_preferences.ja.5 apt-extracttemplates.ja.1 \
17 apt-key.ja.8 apt-secure.ja.8
18
0ee9ebde 19INCLUDES = apt.ent.ja
5d909e1f
CP
20
21doc: $(SOURCE)
22
23$(SOURCE) :: % : %.xml $(INCLUDES)
24 echo Creating man page $@
25 $(XSLTPROC) -o $@ $(STYLESHEET) $<
26
27apt-cache.ja.8:: apt-cache.8
28 cp $< $@
29
30apt-get.ja.8:: apt-get.8
31 cp $< $@
32
33apt-cdrom.ja.8:: apt-cdrom.8
34 cp $< $@
35
36apt.conf.ja.5:: apt.conf.5
37 cp $< $@
38
39apt-config.ja.8:: apt-config.8
40 cp $< $@
41
42sources.list.ja.5:: sources.list.5
43 cp $< $@
44
45apt-sortpkgs.ja.1:: apt-sortpkgs.1
46 cp $< $@
47
48apt-ftparchive.ja.1:: apt-ftparchive.1
49 cp $< $@
50
51apt_preferences.ja.5:: apt_preferences.5
52 cp $< $@
53
54apt-extracttemplates.ja.1:: apt-extracttemplates.1
55 cp $< $@
56
57apt-key.ja.8:: apt-key.8
58 cp $< $@
59
60apt-secure.ja.8:: apt-secure.8
61 cp $< $@
62
63