]>
Commit | Line | Data |
---|---|---|
1 | # -*- make -*- | |
2 | BASE=.. | |
3 | SUBDIR=doc | |
4 | SUBDIRS= $(dir $(wildcard */makefile)) | |
5 | ||
6 | # Bring in the default rules | |
7 | include ../buildlib/defaults.mak | |
8 | ||
9 | # Debian Doc SGML Documents | |
10 | SOURCE = $(wildcard *.sgml) | |
11 | DEBIANDOC_HTML_OPTIONS=-l en.UTF-8 | |
12 | include $(DEBIANDOC_H) | |
13 | ||
14 | # Do not use XMLTO, build the manpages directly with XSLTPROC | |
15 | ifdef XSLTPROC | |
16 | # generate a list of accepted man page translations | |
17 | SOURCE = $(patsubst %.xml,%,$(wildcard *.?.xml)) | |
18 | INCLUDES = apt.ent | |
19 | STYLESHEET=manpage-style.xsl | |
20 | ||
21 | LOCAL := manpage-$(firstword $(SOURCE)) | |
22 | $(LOCAL)-LIST := $(SOURCE) | |
23 | ||
24 | # Install generation hooks | |
25 | doc: $($(LOCAL)-LIST) | |
26 | veryclean: veryclean/$(LOCAL) | |
27 | ||
28 | $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) | |
29 | echo Creating man page $@ | |
30 | $(XSLTPROC) -o $@ $(STYLESHEET) $< | |
31 | ||
32 | # Clean rule | |
33 | .PHONY: veryclean/$(LOCAL) | |
34 | veryclean/$(LOCAL): | |
35 | -rm -rf $($(@F)-LIST) | |
36 | ||
37 | endif | |
38 | ||
39 | # Chain to the manpage rule | |
40 | SOURCE = apt.8 | |
41 | include $(MANPAGE_H) | |
42 | ||
43 | # Examples | |
44 | SOURCE = examples/apt.conf examples/sources.list examples/configure-index examples/apt-https-method-example.conf | |
45 | TO = $(DOC) | |
46 | TARGET = binary | |
47 | include $(COPY_H) | |
48 | ||
49 | .PHONY: clean clean-subdirs veryclean veryclean-subdirs all binary doc | |
50 | doc: | |
51 | for i in $(shell ls po/*.po | sed -r 's#po/([a-z]+[A-Z_]*).po#\1#'); do \ | |
52 | test -d $$i || mkdir $$i; \ | |
53 | test -f $$i/makefile || sed "s#@@LANG@@#$$i#" lang.makefile > $$i/makefile; \ | |
54 | $(MAKE) -C $$i $@; \ | |
55 | done | |
56 | ||
57 | clean: clean-subdirs | |
58 | veryclean: veryclean-subdirs | |
59 | ||
60 | clean-subdirs: | |
61 | for dir in $(SUBDIRS); do\ | |
62 | $(MAKE) -C $$dir clean; \ | |
63 | done | |
64 | ||
65 | veryclean-subdirs: | |
66 | for dir in $(SUBDIRS); do\ | |
67 | rm -rf $$dir; \ | |
68 | done | |
69 | ||
70 | .PHONY: update-po po4a stats | |
71 | ||
72 | ifdef PO4A | |
73 | doc: po4a | |
74 | ||
75 | update-po: | |
76 | po4a --previous --no-backups --force --no-translations po4a.conf | |
77 | ||
78 | po4a: | |
79 | po4a --previous --no-backups po4a.conf | |
80 | endif | |
81 | ||
82 | stats: | |
83 | for i in po/*.po; do echo -n "$$i: "; msgfmt --statistics $$i; done | |
84 | ||
85 | ifdef DOXYGEN | |
86 | DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) ) | |
87 | ||
88 | clean: doxygen-clean | |
89 | ||
90 | doxygen-clean: | |
91 | rm -fr $(BUILD)/doc/doxygen | |
92 | rm -f $(BUILD)/doc/doxygen-stamp | |
93 | ||
94 | $(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile | |
95 | rm -fr $(BUILD)/doc/doxygen | |
96 | mkdir $(BUILD)/doc/doxygen # some versions seem to not create this directory #628799 | |
97 | $(DOXYGEN) $(BUILD)/doc/Doxyfile | |
98 | touch $(BUILD)/doc/doxygen-stamp | |
99 | ||
100 | doc: $(BUILD)/doc/doxygen-stamp | |
101 | endif |