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) \
|
2000-09-22 23:35:14 +00:00
|
|
|
$(shell gnome-config --cflags gnomeui) $(shell gstreamer-config --cflags)
|
2000-06-25 21:38:00 +00:00
|
|
|
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
bin_PROGRAMS = gstmediaplay
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libgstmediaplay.la
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2000-10-30 21:02:08 +00:00
|
|
|
gladedir = $(datadir)/gstmediaplay
|
|
|
|
glade_DATA = gstmediaplay.glade play.xpm stop.xpm pause.xpm
|
2000-08-18 20:35:48 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
libgstmediaplay_la_SOURCES = \
|
|
|
|
gstplay.c \
|
2000-10-30 21:02:08 +00:00
|
|
|
gstmediaplay.c gstmediaplay.h \
|
|
|
|
gststatusarea.c gststatusarea.h \
|
|
|
|
callbacks.c callbacks.h
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
gstmediaplay_SOURCES = \
|
|
|
|
main.c
|
|
|
|
|
|
|
|
|
2000-08-18 20:35:48 +00:00
|
|
|
CFLAGS += -O2 -Wall -DDATADIR=\""$(gladedir)/"\"
|
2000-11-20 22:05:30 +00:00
|
|
|
#CFLAGS += -pg -O2 -Wall -DDATADIR=\""$(gladedir)/"\"
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2000-10-30 21:02:08 +00:00
|
|
|
gstmediaplay_CFLAGS = $(shell gnome-config --cflags gnomeui) $(shell libglade-config --cflags gnome) \
|
2000-09-22 23:35:14 +00:00
|
|
|
$(shell gstreamer-config --cflags )
|
2000-11-11 15:13:50 +00:00
|
|
|
|
2000-10-30 21:02:08 +00:00
|
|
|
gstmediaplay_LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome) \
|
2000-11-11 15:13:50 +00:00
|
|
|
$(shell gstreamer-config --libs ) ./libgstmediaplay.la
|
|
|
|
|
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-10-30 21:02:08 +00:00
|
|
|
gstmediaplay_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
|
|
|
|
|
|
|
|