]> git.saurik.com Git - apt.git/blame - doc/fr/makefile
Fix encoding of generated Japanese man pages. Closes: #361699
[apt.git] / doc / fr / makefile
CommitLineData
9975c278
AL
1# -*- make -*-
2BASE=../..
3SUBDIR=doc/fr
4
5# Bring in the default rules
6include ../../buildlib/defaults.mak
7
920d83e8
MV
8# Do not use XMLTO, build the manpages directly with XSLTPROC
9XSLTPROC=/usr/bin/xsltproc
10STYLESHEET=/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl
11
12
602daf93
AL
13# Man pages
14SOURCE = apt-cache.fr.8 apt-get.fr.8 apt-cdrom.fr.8 apt.conf.fr.5 \
15 sources.list.fr.5 apt-config.fr.8 apt-sortpkgs.fr.1 \
6804503b 16 apt-ftparchive.fr.1 apt_preferences.fr.5 apt-extracttemplates.fr.1 \
920d83e8 17 apt-key.fr.8 apt-secure.fr.8
6804503b 18
9975c278 19INCLUDES = apt.ent.fr
6804503b
MV
20
21doc: $(SOURCE)
22
23$(SOURCE) :: % : %.xml $(INCLUDES)
24 echo Creating man page $@
920d83e8 25 $(XSLTPROC) -o $@ $(STYLESHEET) $<
6804503b
MV
26
27apt-cache.fr.8:: apt-cache.8
28 cp $< $@
29
30apt-get.fr.8:: apt-get.8
31 cp $< $@
32
33apt-cdrom.fr.8:: apt-cdrom.8
34 cp $< $@
35
36apt.conf.fr.5:: apt.conf.5
37 cp $< $@
38
39apt-config.fr.8:: apt-config.8
40 cp $< $@
41
42sources.list.fr.5:: sources.list.5
43 cp $< $@
44
45apt-sortpkgs.fr.1:: apt-sortpkgs.1
46 cp $< $@
47
48apt-ftparchive.fr.1:: apt-ftparchive.1
49 cp $< $@
50
51apt_preferences.fr.5:: apt_preferences.5
52 cp $< $@
53
54apt-extracttemplates.fr.1:: apt-extracttemplates.1
55 cp $< $@
56
57apt-key.fr.8:: apt-key.8
58 cp $< $@
59
920d83e8
MV
60apt-secure.fr.8:: apt-secure.8
61 cp $< $@
62
6804503b 63