mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
31 lines
856 B
Makefile
31 lines
856 B
Makefile
# FIXME FIXME
|
|
|
|
noinst_PROGRAMS = qtest spectrum record wave mp3 teardown buffer mp3parse \
|
|
mpeg2parse mp1parse mp3play ac3parse ac3play dvdcat fake cobin videotest \
|
|
aviparse vidcapture avi2mpg mp2tomp1 mp1tomp1 pipetest \
|
|
vidcapture2 mp2toavi mp3tovorbis
|
|
|
|
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 = $(top_builddir)/plugins/videosink/gdkxvimage.lo ${xvlibs} -lXxf86vm
|
|
|
|
#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
|