]> git.saurik.com Git - apt.git/blob - doc/makefile
ebaca908fb0a8a572a6429525ce2719d192a6313
[apt.git] / doc / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=doc
4
5 # Bring in the default rules
6 include ../buildlib/defaults.mak
7
8 # Debian Doc SGML Documents
9 SOURCE = $(wildcard *.sgml)
10 DEBIANDOC_HTML_OPTIONS=-l en.UTF-8
11 include $(DEBIANDOC_H)
12
13 doc: manpages debiandoc
14
15 examples/sources.list: ../vendor/current/sources.list
16 ln -sf $(shell readlink -f $^) $@
17
18
19 # Examples
20 SOURCE = examples/apt.conf examples/sources.list examples/configure-index examples/apt-https-method-example.conf
21 TO = $(DOC)
22 TARGET = binary
23 include $(COPY_H)
24
25 .PHONY: clean clean/subdirs veryclean veryclean/subdirs manpages/subdirs debiandoc/subdirs all binary doc stats
26
27 clean: clean/subdirs clean/examples
28 veryclean: veryclean/subdirs clean/examples
29 manpages: manpages/subdirs
30 debiandoc: debiandoc/subdirs
31
32 DOCUMENTATIONPO = $(patsubst %.po,%,$(notdir $(wildcard po/*.po)))
33 DOCDIRLIST = $(addsuffix /makefile,$(DOCUMENTATIONPO))
34
35 dirs: $(DOCDIRLIST)
36 $(DOCDIRLIST) :: %/makefile : lang.makefile
37 test -d $(dir $@) || mkdir $(dir $@)
38 sed "s#@@LANG@@#$(subst /,,$(dir $@))#" $< > $@
39
40 debiandoc/subdirs manpages/subdirs clean/subdirs veryclean/subdirs:
41 for dir in en $(dir $(DOCDIRLIST)); do \
42 $(MAKE) -C $$dir $(patsubst %/subdirs,%,$@); \
43 done
44
45 clean/examples:
46 rm -f examples/sources.list
47
48 stats:
49 for i in po/*.po; do echo -n "$$i: "; msgfmt --output-file=/dev/null --statistics $$i; done
50
51 ifdef PO4A
52 MANPAGEPOLIST = $(addprefix manpages-translation-,$(DOCUMENTATIONPO))
53 DEBIANDOCPOLIST = $(addprefix debiandoc-translation-,$(DOCUMENTATIONPO))
54
55 .PHONY: update-po po4a $(MANPAGEPOLIST) $(DEBIANDOCPOLIST) $(DOCDIRLIST)
56
57 po4a: manpages/subdirs debiandoc/subdirs
58
59 update-po:
60 po4a --previous --no-backups --force --no-translations \
61 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
62 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
63
64 manpages/subdirs: $(MANPAGEPOLIST)
65 $(MANPAGEPOLIST) :: manpages-translation-% : %/makefile po4a.conf
66 # first line is for apt.8 (see Bug#696923)
67 po4a --previous --no-backups --translate-only $(dir $<)apt.ent \
68 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.8,%.$(subst /,,$(dir $<)).8,$(wildcard *.8))) \
69 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.1.xml,%.$(subst /,,$(dir $<)).1.xml,$(wildcard *.1.xml))) \
70 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.2.xml,%.$(subst /,,$(dir $<)).2.xml,$(wildcard *.2.xml))) \
71 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.3.xml,%.$(subst /,,$(dir $<)).3.xml,$(wildcard *.3.xml))) \
72 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.4.xml,%.$(subst /,,$(dir $<)).4.xml,$(wildcard *.4.xml))) \
73 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.5.xml,%.$(subst /,,$(dir $<)).5.xml,$(wildcard *.5.xml))) \
74 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.6.xml,%.$(subst /,,$(dir $<)).6.xml,$(wildcard *.6.xml))) \
75 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.7.xml,%.$(subst /,,$(dir $<)).7.xml,$(wildcard *.7.xml))) \
76 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.8.xml,%.$(subst /,,$(dir $<)).8.xml,$(wildcard *.8.xml))) \
77 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
78 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
79
80 debiandoc/subdirs: $(DEBIANDOCPOLIST)
81 $(DEBIANDOCPOLIST) :: debiandoc-translation-% : %/makefile po4a.conf
82 po4a --previous --no-backups --translate-only $(dir $<)apt.ent \
83 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.sgml,%.$(subst /,,$(dir $<)).sgml,$(wildcard *.sgml))) \
84 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
85 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
86 endif
87
88 ifdef DOXYGEN
89 DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) )
90
91 clean: doxygen-clean
92
93 doxygen-clean:
94 rm -fr $(BUILD)/doc/doxygen
95 rm -f $(BUILD)/doc/doxygen-stamp
96
97 $(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile
98 rm -fr $(BUILD)/doc/doxygen
99 mkdir $(BUILD)/doc/doxygen # some versions seem to not create this directory #628799
100 $(DOXYGEN) $(BUILD)/doc/Doxyfile
101 touch $(BUILD)/doc/doxygen-stamp
102
103 debiandoc: $(BUILD)/doc/doxygen-stamp
104 endif