mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
385b9ee5c4
Original commit message from CVS: merge in tagging Includes: - gsttag.[ch] - The definition of GstTagList and tag registering/querying - gsttaginterface.[ch] - Interface for elements that can handle setting of tags - updates and merges to gststructure.[ch] and gstvalue.[ch] - testsuite/tags - some tests for tagging - bugfixes - updates to make make distcheck work - updates the version number to 0.7.2.1 Does not include: - including tagging stuff in docs - extensive tests
30 lines
641 B
Makefile
30 lines
641 B
Makefile
|
|
if BUILD_PLUGIN_DOCS
|
|
SUBDIRS_PLUGINS = plugins
|
|
else
|
|
SUBDIRS_PLUGINS =
|
|
endif
|
|
|
|
if BUILD_DOCS
|
|
SUBDIRS_DOCS = faq manual pwg gst libs
|
|
else
|
|
SUBDIRS_DOCS =
|
|
endif
|
|
|
|
SUBDIRS = $(SUBDIRS_DOCS) $(SUBDIRS_PLUGINS)
|
|
DIST_SUBDIRS = gst faq manual pwg libs plugins xsl
|
|
|
|
EXTRA_DIST = \
|
|
slides manuals.mak htmlinstall.mak \
|
|
image-png image-pdf image-eps version.entities.in
|
|
|
|
upload:
|
|
@for a in manual faq pwg; do cd $$a; make upload; cd ..; done
|
|
|
|
dist-hook:
|
|
$(RM) -rf $(distdir)/random/CVS
|
|
$(RM) -rf $(distdir)/random/*~
|
|
$(RM) -rf $(distdir)/random/.\#*
|
|
$(RM) -rf $(distdir)/slides/CVS
|
|
$(RM) -rf $(distdir)/slides/*~
|
|
$(RM) -rf $(distdir)/slides/.\#*
|