aboutsummaryrefslogtreecommitdiff
path: root/docs/reference/api/Makefile.am
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-10-04 11:14:09 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-10-04 12:10:22 +0200
commit82f253b8ca69cdc99f8e72ba9548c7493baed604 (patch)
treeb9e8b71f535fb1de0dee4c5aeff3aafb29416fd1 /docs/reference/api/Makefile.am
parent86ff6b35c34604184fc5f44527abad8969d5cebd (diff)
docs: include the logos in the generated documentation
Diffstat (limited to 'docs/reference/api/Makefile.am')
-rw-r--r--docs/reference/api/Makefile.am16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/reference/api/Makefile.am b/docs/reference/api/Makefile.am
index 09d5281a..9358484d 100644
--- a/docs/reference/api/Makefile.am
+++ b/docs/reference/api/Makefile.am
@@ -13,6 +13,12 @@ DIAGRAMS_PNG = $(notdir $(DIAGRAMS:.dia=.png))
$(DIAGRAMS_PNG): $(DIAGRAMS)
$(AM_V_GEN) $(DIA) -t png $^ 1>/dev/null 2>&1
+# Logos
+LOGOS_PNG = \
+ $(top_srcdir)/data/ModemManager-logo-square.png \
+ $(top_srcdir)/data/ModemManager-logo-wide.png \
+ $(top_srcdir)/data/ModemManager-logo-wide-text.png
+
# The name of the module.
DOC_MODULE = ModemManager
@@ -53,6 +59,7 @@ MKDB_OPTIONS = --output-format=xml --sgml-mode --name-space=mm
# Images to copy into HTML directory
HTML_IMAGES = \
$(DIAGRAMS_PNG) \
+ $(LOGOS_PNG) \
$(NULL)
# Note that PNG files are also added in content_files so that
@@ -114,6 +121,9 @@ CLEANFILES += \
-rf xml html tmpl \
$(NULL)
-# PNGs generated are removed only in maintainer-clean
-MAINTAINERCLEANFILES = \
- $(DIAGRAMS_PNG)
+# PNGs are removed only in dist-clean
+# Diagrams are generated by dia in the current directory
+# Logos are copied to current directory by gtk-doc
+DISTCLEANFILES = \
+ $(DIAGRAMS_PNG) \
+ $(notdir $(LOGOS_PNG))