2000-06-25 21:38:00 +00:00
|
|
|
## 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
|
|
|
|
|
2000-08-18 20:35:48 +00:00
|
|
|
gladedir = $(datadir)/gstplay
|
|
|
|
glade_DATA = gstplay.glade play.xpm stop.xpm pause.xpm
|
|
|
|
|
2000-06-25 21:38:00 +00:00
|
|
|
gstplay_SOURCES = \
|
2000-07-05 10:21:08 +00:00
|
|
|
gstplay.c \
|
2000-06-25 22:21:44 +00:00
|
|
|
mpeg1.c mpeg2.c avi.c\
|
2000-06-25 21:38:00 +00:00
|
|
|
interface.c interface.h \
|
|
|
|
callbacks.c callbacks.h
|
|
|
|
|
|
|
|
noinst_HEADERS = codecs.h
|
|
|
|
|
2000-08-18 20:35:48 +00:00
|
|
|
CFLAGS += -O2 -Wall -DDATADIR=\""$(gladedir)/"\"
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2000-08-18 20:35:48 +00:00
|
|
|
gstplay_CFLAGS = $(shell gnome-config --cflags gnomeui) $(shell libglade-config --cflags gnome)
|
2000-08-14 10:16:23 +00:00
|
|
|
gstplay_LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome)
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2000-08-19 00:29:57 +00:00
|
|
|
if HAVE_LIBXV
|
|
|
|
xvlibs=-lXv
|
|
|
|
else
|
|
|
|
xvlibs=
|
|
|
|
endif
|
|
|
|
|
2000-07-05 21:32:38 +00:00
|
|
|
gstplay_LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la \
|
2000-08-19 00:29:57 +00:00
|
|
|
$(top_builddir)/plugins/videosink/gdkxvimage.lo ${xvlibs} -lXxf86vm
|
2000-06-25 21:38:00 +00:00
|
|
|
|
|
|
|
|