mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
d616f28fcd
Original commit message from CVS: try again
27 lines
818 B
Makefile
27 lines
818 B
Makefile
if HAVE_LIBGNOMEUI
|
|
GNOME=gnome dynamic
|
|
else
|
|
GNOME=
|
|
endif
|
|
|
|
EXAMPLES = $(GNOME) xml-mp3
|
|
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 xml-mp3.c: $(top_srcdir)/docs/manual/*.xml
|
|
$(srcdir)/extract.pl $@ $(top_srcdir)/docs/manual/*.xml
|