mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
60b626e820
Original commit message from CVS: glade based gstplay version. better avi/mpeg support. nice about dialog :-) Drag and drop should work.
25 lines
690 B
Makefile
25 lines
690 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\
|
|
interface.c interface.h \
|
|
callbacks.c callbacks.h
|
|
|
|
noinst_HEADERS = codecs.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
|
|
gstplay_CFLAGS = $(shell gnome-config --cflags gnomeui) $(shell libglade-config --cflags gnome)
|
|
gstplay_LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome)
|
|
|
|
gstplay_LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \
|
|
$(top_builddir)/plugins/videosink/gdkxvimage.lo -lXv -lXxf86vm
|
|
|
|
|