5 # Bring in the default rules
6 include ../buildlib/defaults.mak
8 # DocBook XML Documents
9 SOURCE = $(wildcard *.dbk)
15 examples/sources.list: ../vendor/current/sources.list
16 ln -sf $(shell readlink -f $^) $@
18 apt-vendor.ent: ../vendor/current/apt-vendor.ent
19 ln -sf $(shell readlink -f $^) $@
22 SOURCE = examples/apt.conf examples/sources.list examples/configure-index examples/apt-https-method-example.conf
27 .PHONY: clean clean/subdirs veryclean veryclean/subdirs manpages/subdirs docbook/subdirs all binary doc stats
29 clean: clean/subdirs clean/examples
30 veryclean: veryclean/subdirs clean/examples
31 manpages: apt-vendor.ent manpages/subdirs
32 docbook: apt-vendor.ent docbook/subdirs
34 DOCUMENTATIONPO = $(patsubst %.po,%,$(notdir $(wildcard po/*.po)))
35 DOCDIRLIST = $(addsuffix /makefile,$(DOCUMENTATIONPO))
38 $(DOCDIRLIST) :: %/makefile : lang.makefile
39 test -d $(dir $@) || mkdir $(dir $@)
40 sed "s#@@LANG@@#$(subst /,,$(dir $@))#" $< > $@
42 docbook/subdirs manpages/subdirs clean/subdirs veryclean/subdirs:
43 for dir in en $(dir $(DOCDIRLIST)); do \
44 $(MAKE) -C $$dir $(patsubst %/subdirs,%,$@); \
48 rm -f examples/sources.list
52 for i in po/*.po; do echo -n "$$i: "; msgfmt --output-file=/dev/null --statistics $$i; done
55 MANPAGEPOLIST = $(addprefix manpages-translation-,$(DOCUMENTATIONPO))
56 DOCBOOKPOLIST = $(addprefix docbook-translation-,$(DOCUMENTATIONPO))
58 .PHONY: update-po po4a $(MANPAGEPOLIST) $(DOCBOOKPOLIST) $(DOCDIRLIST)
60 po4a: manpages/subdirs docbook/subdirs
63 po4a --previous --no-backups --force --no-translations \
64 --msgmerge-opt --add-location=file \
65 --porefs noline,wrap \
66 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
67 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
69 manpages/subdirs: $(MANPAGEPOLIST)
70 $(MANPAGEPOLIST) :: manpages-translation-% : %/makefile po4a.conf
71 po4a --previous --no-backups --translate-only $(dir $<)apt.ent \
72 --msgmerge-opt --add-location=file \
73 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.1.xml,%.$(subst /,,$(dir $<)).1.xml,$(wildcard *.1.xml))) \
74 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.2.xml,%.$(subst /,,$(dir $<)).2.xml,$(wildcard *.2.xml))) \
75 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.3.xml,%.$(subst /,,$(dir $<)).3.xml,$(wildcard *.3.xml))) \
76 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.4.xml,%.$(subst /,,$(dir $<)).4.xml,$(wildcard *.4.xml))) \
77 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.5.xml,%.$(subst /,,$(dir $<)).5.xml,$(wildcard *.5.xml))) \
78 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.6.xml,%.$(subst /,,$(dir $<)).6.xml,$(wildcard *.6.xml))) \
79 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.7.xml,%.$(subst /,,$(dir $<)).7.xml,$(wildcard *.7.xml))) \
80 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.8.xml,%.$(subst /,,$(dir $<)).8.xml,$(wildcard *.8.xml))) \
81 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
82 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
84 docbook/subdirs: $(DOCBOOKPOLIST)
85 $(DOCBOOKPOLIST) :: docbook-translation-% : %/makefile po4a.conf
86 po4a --previous --no-backups --translate-only $(dir $<)apt.ent \
87 --msgmerge-opt --add-location=file \
88 $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.dbk,%.$(subst /,,$(dir $<)).dbk,$(wildcard *.dbk))) \
89 --package-name='$(PACKAGE)-doc' --package-version='$(PACKAGE_VERSION)' \
90 --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf
94 DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) )
99 rm -fr $(BUILD)/doc/doxygen
100 rm -f $(BUILD)/doc/doxygen-stamp
102 $(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile
103 rm -fr $(BUILD)/doc/doxygen
104 mkdir $(BUILD)/doc/doxygen # some versions seem to not create this directory #628799
105 $(DOXYGEN) $(BUILD)/doc/Doxyfile
106 touch $(BUILD)/doc/doxygen-stamp
108 docbook: $(BUILD)/doc/doxygen-stamp