mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
879f3b4f29
Original commit message from CVS: - fixed configure.in %VAR stuff - fixed gstreamer.pc.in description string - fixed up incremental scheduling some more - updated the GST_DEBUG_FUNCPTR code to no longer need a hash - minor updates to DEBUG colorization - new test/mpeg2parse4.c
39 lines
1,016 B
Makefile
39 lines
1,016 B
Makefile
# FIXME FIXME
|
|
|
|
if HAVE_GNOME
|
|
GNOME_PROGS = spectrum wave mpeg2parse mp1parse videotest aviparse \
|
|
mpeg2parse2 videotest2 video2mp1 dvshow dv2mp1 mpeg2parse3 mpeg2parse4
|
|
else
|
|
GNOME_PROGS =
|
|
endif
|
|
|
|
noinst_PROGRAMS = qtest $(GNOME_PROGS) record mp3 teardown buffer mp3parse \
|
|
mp3play ac3parse ac3play dvdcat fake cobin \
|
|
vidcapture avi2mpg mp2tomp1 mp1tomp1 pipetest \
|
|
vidcapture2 mp2toavi mp3tovorbis xmmstest \
|
|
mp3mad
|
|
|
|
SUBDIRS = xml bindings
|
|
|
|
buffer_SOURCES = buffer.c mem.c
|
|
teardown_SOURCES = teardown.c mem.c
|
|
ac3play_SOURCES = ac3play.c mem.c
|
|
|
|
noinst_HEADERS = mem.h
|
|
|
|
if HAVE_LIBXV
|
|
xvlibs=-lXv
|
|
else
|
|
xvlibs=
|
|
endif
|
|
|
|
LDADD = ${xvlibs} -lXxf86vm $(GNOME_LIBS) $(GST_LIBS)
|
|
|
|
#LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \
|
|
# $(top_builddir)/plugins/videosink/libvideosink.la -L/usr/X11/lib -lXxf86dga
|
|
#LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
|
|
LIBS += $(GNOME_LIBS) $(GST_LIBS)
|
|
CFLAGS += $(GNOME_CFLAGS) $(GST_CFLAGS)
|
|
|
|
EXTRA_DIST = README
|