44 strings left
[ntk/apt.git] / doc / makefile
CommitLineData
ac966541
AL
1# -*- make -*-
2BASE=..
3164dff9 3SUBDIR=doc
b01390ea 4SUBDIRS= $(dir $(wildcard */makefile))
ac966541
AL
5
6# Bring in the default rules
7include ../buildlib/defaults.mak
8
b2e465d6 9# Debian Doc SGML Documents
7652e03e
DK
10SOURCE = $(wildcard *.sgml)
11DEBIANDOC_HTML_OPTIONS=-l en
ac966541
AL
12include $(DEBIANDOC_H)
13
e46a23a5
DK
14# Do not use XMLTO, build the manpages directly with XSLTPROC
15ifdef XSLTPROC
16# generate a list of accepted man page translations
17SOURCE = $(patsubst %.xml,%,$(wildcard *.?.xml))
18INCLUDES = apt.ent
19STYLESHEET=manpage-style.xsl
20
21LOCAL := manpage-$(firstword $(SOURCE))
22$(LOCAL)-LIST := $(SOURCE)
23
24# Install generation hooks
25doc: $($(LOCAL)-LIST)
26veryclean: 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)
34veryclean/$(LOCAL):
35 -rm -rf $($(@F)-LIST)
36
37endif
38
39# Chain to the manpage rule
40SOURCE = apt.8
41include $(MANPAGE_H)
c3c459fc
AL
42
43# Examples
fcdd9cdd 44SOURCE = examples/apt.conf examples/sources.list examples/configure-index examples/apt-https-method-example.conf
c3c459fc 45TO = $(DOC)
8319e9c3 46TARGET = binary
c3c459fc 47include $(COPY_H)
9975c278
AL
48
49#.PHONY: headers library clean veryclean all binary program doc doc.pt_BR doc.fr
b01390ea 50doc:
2a52e8c5
DK
51 for dir in $(SUBDIRS); do\
52 $(MAKE) -C $$dir $@; \
53 done
9975c278 54
b01390ea
DK
55clean: clean-subdirs
56veryclean: veryclean-subdirs
f1813c1a 57
2a52e8c5
DK
58clean-subdirs:
59 for dir in $(SUBDIRS); do\
b01390ea
DK
60 $(MAKE) -C $$dir clean; \
61 done
62
63veryclean-subdirs:
64 for dir in $(SUBDIRS); do\
65 $(MAKE) -C $$dir veryclean; \
2a52e8c5 66 done
8667550d 67
b01390ea
DK
68ifdef PO4A
69doc: po4a
70
71clean: po4a-clean
72
73.PHONY: update-po po4a
74update-po:
75 po4a --previous --no-backups --force --no-translations po4a.conf
76
2a52e8c5
DK
77po4a-clean:
78 po4a --previous --rm-backups --rm-translations po4a.conf
640c5d94 79
2a52e8c5
DK
80po4a:
81 po4a --previous --no-backups po4a.conf
b01390ea 82endif
3174e150
MV
83
84ifdef DOXYGEN
85DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) )
86
87clean: doxygen-clean
88
89doxygen-clean:
90 rm -fr $(BUILD)/doc/doxygen
91 rm -f $(BUILD)/doc/doxygen-stamp
92
93$(BUILD)/doc/Doxyfile: Doxyfile.in
94 (cd $(BUILD) && ./config.status doc/Doxyfile)
95
96$(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile
97 rm -fr $(BUILD)/doc/doxygen
98 $(DOXYGEN) $(BUILD)/doc/Doxyfile
99 touch $(BUILD)/doc/doxygen-stamp
100
101doc: $(BUILD)/doc/doxygen-stamp
3174e150 102endif