summaryrefslogtreecommitdiff
path: root/docs/design/Makefile.am
blob: 087a3b03a6fd2f75c9190e997efbd6723e847df0 (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

EXTRA_DIST = \
	draft-buffer2.txt \
	draft-klass.txt \
	draft-push-pull.txt \
	draft-tagreading.txt \
	part-activation.txt \
	part-block.txt \
	part-buffering.txt \
	part-bufferlist.txt \
	part-caps.txt \
	part-clocks.txt \
	part-conventions.txt \
	part-dynamic.txt \
	part-element-sink.txt \
	part-element-source.txt \
	part-element-transform.txt \
	part-events.txt \
	part-framestep.txt \
	part-gstbin.txt \
	part-gstbus.txt \
	part-gstelement.txt \
	part-gstghostpad.txt \
	part-gstobject.txt \
	part-gstpipeline.txt \
	part-latency.txt \
	part-live-source.txt \
	part-messages.txt \
	part-missing-plugins.txt \
	part-MT-refcounting.txt \
	part-negotiation.txt \
	part-overview.txt \
	part-preroll.txt \
	part-push-pull.txt \
	part-qos.txt \
	part-query.txt \
	part-relations.txt \
	part-scheduling.txt \
	part-seeking.txt \
	part-segments.txt \
	part-sparsestreams.txt \
	part-standards.txt \
	part-states.txt \
	part-stream-status.txt \
	part-streams.txt \
	part-synchronisation.txt \
	part-toc.txt \
	part-TODO.txt \
	part-trickmodes.txt

CLEANFILES = index.html index.txt

html:
	if ! test -z `which asciidoc`; then \
	  echo >index.txt  "GStreamer design"; \
	  echo >>index.txt "================"; \
	  echo >>index.txt "The Gstreamer developers"; \
	  echo >>index.txt "Version $(PACKAGE_VERSION)"; \
	  echo >>index.txt ""; \
	  ( cd $(srcdir) && \
	  cat >>$(abs_builddir)/index.txt $(EXTRA_DIST) ); \
	  asciidoc -o index.html index.txt; \
	else \
	  echo "need asciidoc to generate html"; \
        fi;

upload:
	@echo nothing to upload