mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
51847f3fe4
Original commit message from CVS: Added a testsuite. This currently only has one test, which replicates a problem just submitted to the list. I hope noone disagrees that we need a testsuite. Also, hopefully we all think that a tiny testsuite which is easy to add tests to is much better than a huge project to create a complete testsuite, which never gets started because its too big and scary. I suggest that tests get created whenever someone has a spare moment, or whenever a bug is reported (to replicate the problem, and thus be sure that when fixed it stays fixed), and before making a change to a piece of code to ensure that it remains working. If we all add little tests occasionally, then we'll have a good useful testsuite before we know it. All you need to do is make a
35 lines
738 B
Makefile
35 lines
738 B
Makefile
PACKAGE = @PACKAGE@
|
|
VERSION = @VERSION@
|
|
|
|
# if libglade is present, build the player and editor
|
|
if HAVE_LIBGLADE_GNOME
|
|
SUBDIRS_LGG = gstplay editor
|
|
else
|
|
SUBDIRS_LGG =
|
|
endif
|
|
|
|
if BUILD_DOCS
|
|
SUBDIRS_DOCS = docs
|
|
else
|
|
SUBDIRS_DOCS =
|
|
endif
|
|
|
|
SUBDIRS = include gst libs plugins tools test tests testsuite examples \
|
|
$(SUBDIRS_LGG) $(SUBDIRS_DOCS)
|
|
|
|
# These are all the possible subdirs
|
|
DIST_SUBDIRS = include gst libs plugins tools test tests testsuite examples gstplay editor docs debian
|
|
|
|
|
|
bin_SCRIPTS = gstreamer-config
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = gstreamer.m4
|
|
|
|
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 LICENSE REQUIREMENTS
|
|
|
|
dist-hook:
|
|
cp gstreamer.spec $(distdir)
|
|
|
|
rpm: dist
|
|
rpm -ta $(distdir).tar.gz
|