summaryrefslogtreecommitdiff
path: root/doc/cookbook/Makefile.am
blob: 5c70e4dfeb536665ca835c8d999604c976cec82e (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
include $(top_srcdir)/build/autotools/Makefile.am.silent

SUBDIRS = examples

NULL =

HTML_DIR = $(datadir)/gtk-doc/html
TARGET_DIR = $(HTML_DIR)/clutter-cookbook

XML_FILES = \
	$(srcdir)/actors.xml		\
	$(srcdir)/animations.xml	\
	$(srcdir)/events.xml		\
	$(srcdir)/introduction.xml	\
	$(srcdir)/text.xml		\
	$(srcdir)/textures.xml		\
	$(srcdir)/layouts.xml		\
	$(srcdir)/script.xml		\
	$(srcdir)/effects.xml		\
	$(NULL)

XSLTOPTS = \
	--stringparam html.stylesheet style.css 		\
	--stringparam  chapter.autolabel 1 			\
	--stringparam  appendix.autolabel 1 			\
	--stringparam  section.autolabel 1 			\
	--stringparam gtkdoc.bookname "clutter-cookbook" 	\
	--stringparam gtkdoc.version @CLUTTER_API_VERSION@ 	\
	--stringparam callout.graphics 0			\
	--path $(top_srcdir)/doc/common				\
	--xinclude

XSL_BASE_URI  = http://docbook.sourceforge.net/release/xsl/current
XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl

HTML_FILES = $(top_builddir)/doc/cookbook/html/*.html
CSS_FILES = $(top_builddir)/doc/cookbook/html/*.css
IMAGE_FILES = \
	$(srcdir)/images/clutter-logo.png \
	$(srcdir)/images/effects-basic.png \
	$(srcdir)/images/effects-basic-background.png \
	$(srcdir)/images/effects-built-in.png \
	$(srcdir)/images/effects-custom-deform.png \
	$(srcdir)/images/effects-custom-deform-back-material.png \
	$(srcdir)/images/textures-reflection.png \
	$(srcdir)/images/actors-opacity.png \
	$(srcdir)/images/actors-opacity-container-affects-opacity.png \
	$(srcdir)/images/text-shadow.png \
	$(srcdir)/images/textures-sub-texture.png \
	$(srcdir)/images/layouts-stacking-diff-actor-sizes.png \
	$(srcdir)/images/events-pointer-motion-stacking.png	\
	$(srcdir)/images/layouts-bind-constraint-stage.png	\
	$(NULL)

VIDEO_FILES = \
	$(srcdir)/videos/animations-fading-out.ogv \
	$(srcdir)/videos/animations-fading-in-then-out.ogv \
	$(srcdir)/videos/animations-path.ogv \
	$(srcdir)/videos/animations-rotating-x-minus-45.ogv \
	$(srcdir)/videos/animations-rotating-y-45.ogv \
	$(srcdir)/videos/animations-rotating-z-90.ogv \
	$(srcdir)/videos/animations-rotating-x-minus-180-with-y-minus-96.ogv \
	$(srcdir)/videos/animations-rotating-x-minus-180-with-z-minus-96.ogv \
	$(srcdir)/videos/animations-rotating-x-centered.ogv \
	$(srcdir)/videos/animations-rotating-y-centered.ogv \
	$(srcdir)/videos/animations-rotating-z-centered.ogv \
	$(srcdir)/videos/animations-rotating-container-reverses-direction.ogv \
	$(srcdir)/videos/effects-custom-deform.ogv \
	$(srcdir)/videos/textures-split-go.ogv \
	$(srcdir)/videos/events-mouse-scroll.ogv \
	$(srcdir)/videos/textures-crossfade-two-textures.ogv \
	$(srcdir)/videos/animations-complex.ogv \
	$(srcdir)/videos/animations-reuse.ogv \
	$(srcdir)/videos/animations-moving-anchors.ogv \
	$(srcdir)/videos/animations-moving-depth.ogv \
	$(srcdir)/videos/animations-looping.ogv \
	$(NULL)

EXTRA_DIST = \
	clutter-cookbook.xml.in \
	recipe-template.xml	\
	$(IMAGE_FILES) \
	$(XML_FILES) \
	$(VIDEO_FILES)

CLEANFILES = \
	pdf-build.stamp \
	html-build.stamp \
	clutter-cookbook.html

pdf-build.stamp: clutter-cookbook.xml $(XML_FILES)
	SP_ENCODING=XML SP_CHARSET_FIXED=YES \
	$(JW) -b pdf $(top_builddir)/doc/cookbook/clutter-cookbook.xml \
	&& mv -f clutter-cookbook.pdf clutter-cookbook-@CLUTTER_API_VERSION@.pdf \
	&& echo timestamp > $(@F)

html-build.stamp: clutter-cookbook.xml $(XML_FILES)
	if [ ! -d html ] ; then mkdir html ; fi && \
	if [ ! -d html/images ] ; then mkdir html/images ; fi && \
	if [ ! -d html/videos ] ; then mkdir html/videos ; fi && \
	if [ ! -d html/examples ] ; then mkdir html/examples ; fi && \
	$(XSLTPROC) $(XSLTOPTS) -o clutter-cookbook.html $(XSL_XHTML_URI) $(top_builddir)/doc/cookbook/clutter-cookbook.xml && \
	$(XSLTPROC) $(XSLTOPTS) -o html/ cookbook.xsl $(top_builddir)/doc/cookbook/clutter-cookbook.xml && \
	cp $(top_srcdir)/doc/common/style.css html/ && \
	if [[ "$(VIDEO_FILES)" != "" ]] ; then \
		for file in `ls $(VIDEO_FILES)`; do \
			cp $$file html/videos/ ; \
		done \
	fi && \
	cp $(top_srcdir)/doc/cookbook/images/* html/images/ && \
	cp $(top_srcdir)/doc/cookbook/examples/*.c html/examples/ && \
	echo timestamp > $(@F)

if ENABLE_PDFS
#pdf_target = pdf-build.stamp
pdf_target =
else
pdf_target =
endif

if ENABLE_DOCS
all-local: html-build.stamp $(pdf_target)
else
all-local:
endif

clean-local:
	@rm -rf html ; \
	rm -f *.pdf ; \
	rm -f *.stamp

uninstall-local:
	@rm -rf $(DESTDIR)$(TARGET_DIR)
	@rm -f $(DESTDIR)$(TARGET_DIR)/clutter-cookbook.devhelp

install-data-local:
	installfiles=`echo $(top_builddir)/doc/cookbook/html/*`; \
	if test "$$installfiles" = '$(top_builddir)/doc/cookbook/html/*'; \
	then echo '-- Nothing to install' ; \
	else \
	  $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) ; \
	  for file in `ls $(HTML_FILES) $(CSS_FILES)`; do \
	    if [ -f $$file ]; then \
	      basefile=`echo $$file | sed -e 's,^.*/,,'`; \
	      $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR)/$$basefile; \
	    fi \
	  done; \
	fi; \
	if [ -d $(top_srcdir)/doc/cookbook/images ]; \
	then \
	  $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)/images ; \
	  for file in `ls $(IMAGE_FILES)`; do \
	    if [ -f $$file ]; \
	    then \
	      basefile=`echo $$file | sed -e 's,^.*/,,'`; \
	      $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR)/images/$$basefile; \
	    fi \
	  done; \
	fi; \
	if [ -d $(top_srcdir)/doc/cookbook/videos ]; \
	then \
	  $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)/videos ; \
	  for file in `ls $(VIDEO_FILES)`; do \
	    if [ -f $$file ]; \
	    then \
	      basefile=`echo $$file | sed -e 's,^.*/,,'`; \
	      $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR)/videos/$$basefile; \
	    fi \
	  done; \
	fi; \
	$(INSTALL_DATA) $(top_builddir)/doc/cookbook/html/clutter-cookbook.devhelp $(DESTDIR)$(TARGET_DIR)/clutter-cookbook.devhelp

.PHONY : doc

COOKBOOK_BASE_PATH = /home/clutter/web/docs.clutter-project.org/docs/clutter-cookbook
COOKBOOK_VERSION = $(CLUTTER_API_VERSION)
COOKBOOK_PATH = $(COOKBOOK_BASE_PATH)/$(COOKBOOK_VERSION)

publish: html-build.stamp
	$(QUIET_CP)scp -r html/* clutter@clutter-project.org:$(COOKBOOK_PATH)

.PHONY : publish