mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
a608f7e770
Original commit message from CVS: ouch, this breaks our test bots heavily :)
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
if HAVE_LIBGNOMEUI
|
|
GNOME=gnome
|
|
else
|
|
GNOME=
|
|
endif
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = xml-mp3
|
|
endif
|
|
|
|
INCLUDES = $(GST_OBJ_CFLAGS)
|
|
|
|
#dynamic_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
|
#dynamic_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
|
gnome_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
|
gnome_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
|
|
|
EXTRA_DIST = extract.pl
|
|
|
|
EXAMPLES = \
|
|
dynamic $(GNOME) elementmake elementget helloworld \
|
|
init popt queue threads $(GST_LOADSAVE_SRC)
|
|
|
|
dynamic.c: $(top_srcdir)/docs/manual/dynamic.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
elementmake.c elementget.c: $(top_srcdir)/docs/manual/elements-api.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
gnome.c: $(top_srcdir)/docs/manual/gnome.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
helloworld.c: $(top_srcdir)/docs/manual/helloworld.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
init.c popt.c: $(top_srcdir)/docs/manual/init-api.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
queue.c: $(top_srcdir)/docs/manual/queues.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
threads.c: $(top_srcdir)/docs/manual/threads.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
xml-mp3.c: $(top_srcdir)/docs/manual/xml.xml
|
|
$(PERL_PATH) $(srcdir)/extract.pl $@ $<
|
|
|
|
# we use some of the examples as testsuite apps, to verify that
|
|
# they actually run
|
|
include $(top_srcdir)/testsuite/Rules
|
|
|
|
tests_pass = elementmake elementget init popt
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
noinst_PROGRAMS = $(EXAMPLES)
|
|
LDADD = $(GST_OBJ_LIBS)
|