summaryrefslogtreecommitdiff
path: root/libgphoto2_port/doc/DocRules.am
blob: 5c7b908bf5cdf901ddb70155fb474e5b8dd27bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

# The top-level SGML file.
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-api.sgml

EXTRA_DIST = $(DOC_MODULE)-api.sgml $(DOC_MODULE)-sections.txt

clean-local:
	rm -f *~ *.bak *.hierarchy *.signals *.args *-unused.txt

maintainer-clean-local: clean
	rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt 

if ENABLE_GTK_DOC

htmldir=@HTML_DIR@

TARGET_DIR=$(htmldir)/$(DOC_MODULE)

all-local: templates sgml html

scan:
	cd $(srcdir) && gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR)

templates: scan
	cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE)

sgml:
	cd $(srcdir) && gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR)

html:
	if ! test -d html ; then mkdir html ; fi
	-cd html && gtkdoc-mkhtml $(DOC_MODULE) $(srcdir)/$(DOC_MAIN_SGML_FILE)

install-data-local:
	$(INSTALL) -d -m 0755 $(DESTDIR)$(TARGET_DIR)
	$(INSTALL_DATA) $(srcdir)/html/*.html $(DESTDIR)$(TARGET_DIR)
	$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR)
	gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(DESTDIR)$(htmldir)

dist-hook:
	(cd $(srcdir) ; tar cvf - html) | (cd $(distdir); tar xf -)

.PHONY : html sgml templates scan

else

dist-hook:
	@echo "Dummy target $@."
	@echo "Re-run configure with adequate parameters and run make again to build docs."

install-data-local:
	@echo "Dummy target $@"
	@echo "Re-run configure with adequate parameters and run make again to build docs."

endif