utils: improve debug
[platform/upstream/gstreamer.git] / docs / design / Makefile.am
1
2 EXTRA_DIST = \
3         draft-klass.txt \
4         draft-push-pull.txt \
5         draft-tagreading.txt \
6         part-activation.txt \
7         part-block.txt \
8         part-buffering.txt \
9         part-caps.txt \
10         part-clocks.txt \
11         part-conventions.txt \
12         part-dynamic.txt \
13         part-element-sink.txt \
14         part-element-source.txt \
15         part-element-transform.txt \
16         part-events.txt \
17         part-framestep.txt \
18         part-gstbin.txt \
19         part-gstbus.txt \
20         part-gstelement.txt \
21         part-gstghostpad.txt \
22         part-gstobject.txt \
23         part-gstpipeline.txt \
24         part-latency.txt \
25         part-live-source.txt \
26         part-messages.txt \
27         part-missing-plugins.txt \
28         part-MT-refcounting.txt \
29         part-negotiation.txt \
30         part-overview.txt \
31         part-preroll.txt \
32         part-push-pull.txt \
33         part-qos.txt \
34         part-query.txt \
35         part-relations.txt \
36         part-scheduling.txt \
37         part-seeking.txt \
38         part-segments.txt \
39         part-sparsestreams.txt \
40         part-standards.txt \
41         part-states.txt \
42         part-stream-status.txt \
43         part-streams.txt \
44         part-synchronisation.txt \
45         part-TODO.txt \
46         part-trickmodes.txt
47
48 CLEANFILES = index.html index.txt
49
50 html:
51         if ! test -z `which asciidoc`; then \
52           echo >index.txt  "GStreamer design"; \
53           echo >>index.txt "================"; \
54           echo >>index.txt "The Gstreamer developers"; \
55           echo >>index.txt "Version $(PACKAGE_VERSION)"; \
56           echo >>index.txt ""; \
57           ( cd $(srcdir) && \
58           cat >>$(abs_builddir)/index.txt $(EXTRA_DIST) ); \
59           asciidoc -o index.html index.txt; \
60         else \
61           echo "need asciidoc to generate html"; \
62         fi;
63
64 upload:
65         @echo nothing to upload
66