mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
9b0e11ec7e
Original commit message from CVS: Added seeking to some of the plugins. some MMX speedups in the MPEG decoders. Better YUV to MMX conversion implemented seeking to gstplay.
25 lines
552 B
Makefile
25 lines
552 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) \
|
|
$(shell gnome-config --cflags gnomeui)
|
|
|
|
|
|
bin_PROGRAMS = gstplay
|
|
|
|
gstplay_SOURCES = \
|
|
gstplay.c \
|
|
mpeg1.c mpeg2.c avi.c\
|
|
support.c support.h \
|
|
interface.c interface.h \
|
|
callbacks.c callbacks.h
|
|
|
|
noinst_HEADERS = codecs.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
|
|
gstplay_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
gstplay_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
|
|
|