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) \
|
2001-01-01 03:18:17 +00:00
|
|
|
$(shell gnome-config --cflags gnomeui) -I..
|
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
|
|
|
|
2001-01-01 08:43:22 +00:00
|
|
|
EXTRA_DIST = $(glade_DATA)
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
libgstmediaplay_la_SOURCES = \
|
|
|
|
gstplay.c \
|
2001-01-01 07:47:14 +00:00
|
|
|
gstmediaplay.c \
|
|
|
|
gststatusarea.c \
|
|
|
|
callbacks.c
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
gstmediaplay_SOURCES = \
|
|
|
|
main.c
|
|
|
|
|
2001-01-01 07:47:14 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
gstmediaplay.h \
|
|
|
|
gststatusarea.h \
|
|
|
|
callbacks.h \
|
|
|
|
gstplay.h \
|
|
|
|
gstplayprivate.h
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
|
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) \
|
2001-01-01 03:18:17 +00:00
|
|
|
-I..
|
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) \
|
2001-01-01 03:18:17 +00:00
|
|
|
../gst/libgst.la ./libgstmediaplay.la
|
2000-11-11 15:13:50 +00:00
|
|
|
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2000-08-19 00:29:57 +00:00
|
|
|
if HAVE_LIBXV
|
|
|
|
xvlibs=-lXv
|
|
|
|
else
|
|
|
|
xvlibs=
|
|
|
|
endif
|
|
|
|
|
2001-01-02 01:44:53 +00:00
|
|
|
gstmediaplay_LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
|
|
|
2000-06-25 21:38:00 +00:00
|
|
|
|