mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
b030b5cef2
Original commit message from CVS: - Add more --disable options - fix makefiles to only compile non-disabled features - some compile fixes. - removed extratypes, added gsturitype - make get/set clock on a bin overridable - some portability fixes for GUINT64 - separate pools from gstregistry.[ch] into gstregistrypool.[ch] - make gstobject size fixed, even if we disabled load/save - don't use 'new' as a variable as it is not a valib C++ variable
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
if HAVE_LIBGNOMEUI
|
|
GNOME=gnome
|
|
else
|
|
GNOME=
|
|
endif
|
|
|
|
if GST_DISABLE_AUTOPLUG
|
|
GST_AUTOPLUG_SRC =
|
|
else
|
|
GST_AUTOPLUG_SRC = helloworld2
|
|
endif
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = xml-mp3
|
|
endif
|
|
|
|
EXAMPLES = dynamic $(GNOME) helloworld $(GST_AUTOPLUG_SRC) queue threads $(GST_LOADSAVE_SRC)
|
|
noinst_PROGRAMS = $(EXAMPLES)
|
|
|
|
LDADD = $(GST_LIBS)
|
|
INCLUDES = $(GST_CFLAGS)
|
|
|
|
#dynamic_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
|
#dynamic_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
|
gnome_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
|
gnome_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
|
|
|
EXTRA_DIST = extract.pl
|
|
|
|
# for some reason specifying %.c runs us into trouble when running make
|
|
# clean, it starts looking for things like mostlyclean-am.c, please
|
|
# help me fix that so we don't need to specify all sources here
|
|
# also, it's a bit irritating that right now a change in any xml file
|
|
# triggers a rebuild of all examples
|
|
#%.c:
|
|
dynamic.c gnome.c helloworld.c helloworld2.c queue.c threads.c xml-mp3.c: $(top_srcdir)/docs/manual/*.xml
|
|
$(srcdir)/extract.pl $@ $(top_srcdir)/docs/manual/*.xml
|