* merged with apt--main and apt--fixes
[ntk/apt.git] / doc / fr / makefile
1 # -*- make -*-
2 BASE=../..
3 SUBDIR=doc/fr
4
5 # Bring in the default rules
6 include ../../buildlib/defaults.mak
7
8 # Man pages
9 SOURCE = apt-cache.fr.8 apt-get.fr.8 apt-cdrom.fr.8 apt.conf.fr.5 \
10 sources.list.fr.5 apt-config.fr.8 apt-sortpkgs.fr.1 \
11 apt-ftparchive.fr.1 apt_preferences.fr.5 apt-extracttemplates.fr.1 \
12 apt-key.fr.8
13
14 INCLUDES = apt.ent.fr
15
16 doc: $(SOURCE)
17
18 $(SOURCE) :: % : %.xml $(INCLUDES)
19 echo Creating man page $@
20 $(XMLTO) man $<
21
22 apt-cache.fr.8:: apt-cache.8
23 cp $< $@
24
25 apt-get.fr.8:: apt-get.8
26 cp $< $@
27
28 apt-cdrom.fr.8:: apt-cdrom.8
29 cp $< $@
30
31 apt.conf.fr.5:: apt.conf.5
32 cp $< $@
33
34 apt-config.fr.8:: apt-config.8
35 cp $< $@
36
37 sources.list.fr.5:: sources.list.5
38 cp $< $@
39
40 apt-sortpkgs.fr.1:: apt-sortpkgs.1
41 cp $< $@
42
43 apt-ftparchive.fr.1:: apt-ftparchive.1
44 cp $< $@
45
46 apt_preferences.fr.5:: apt_preferences.5
47 cp $< $@
48
49 apt-extracttemplates.fr.1:: apt-extracttemplates.1
50 cp $< $@
51
52 apt-key.fr.8:: apt-key.8
53 cp $< $@
54
55