mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
c9a37cf682
Original commit message from CVS: * configure.ac: * examples/Makefile.am: * examples/pwg/Makefile.am: * examples/pwg/extract.pl: Enable building the PWG examples. * docs/pwg/advanced-interfaces.xml: Add URI interface stub. * docs/pwg/advanced-types.xml: * docs/pwg/other-autoplugger.xml: * docs/pwg/appendix-porting.xml: * docs/pwg/pwg.xml: Add porting guide (mostly stubs), remove autoplugging (see ADM). * docs/pwg/building-boiler.xml: * docs/pwg/building-chainfn.xml: * docs/pwg/building-pads.xml: * docs/pwg/building-props.xml: * docs/pwg/building-state.xml: * docs/pwg/building-testapp.xml: Update the building-*.xml parts for 0.9 changes. All examples code blocks compile in examples/pwg/*.
26 lines
357 B
Makefile
26 lines
357 B
Makefile
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_DIRS =
|
|
else
|
|
GST_LOADSAVE_DIRS = xml typefind
|
|
endif
|
|
|
|
dirs = \
|
|
helloworld \
|
|
queue \
|
|
queue2 \
|
|
queue3 \
|
|
queue4 \
|
|
launch \
|
|
thread \
|
|
plugins \
|
|
mixer \
|
|
cutter \
|
|
pingpong \
|
|
manual \
|
|
pwg \
|
|
retag
|
|
|
|
SUBDIRS = $(dirs) \
|
|
$(GST_LOADSAVE_DIRS)
|
|
|
|
DIST_SUBDIRS = $(dirs) xml typefind
|