mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
dd37e99746
Original commit message from CVS: Fixes for gsteditor/gstplay install/build fixed typo in random/eos added num_buffers property to fakesrc
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) \
|
|
$(shell gnome-config --cflags gnomeui) -I..
|
|
|
|
|
|
bin_PROGRAMS = gstmediaplay
|
|
|
|
lib_LTLIBRARIES = libgstmediaplay.la
|
|
|
|
gladedir = $(datadir)/gstmediaplay
|
|
glade_DATA = gstmediaplay.glade play.xpm stop.xpm pause.xpm
|
|
|
|
EXTRA_DIST = $(glade_DATA)
|
|
|
|
libgstmediaplay_la_SOURCES = \
|
|
gstplay.c \
|
|
gstmediaplay.c \
|
|
gststatusarea.c \
|
|
callbacks.c
|
|
|
|
gstmediaplay_SOURCES = \
|
|
main.c
|
|
|
|
noinst_HEADERS = \
|
|
gstmediaplay.h \
|
|
gststatusarea.h \
|
|
callbacks.h \
|
|
gstplay.h \
|
|
gstplayprivate.h
|
|
|
|
|
|
CFLAGS += -O2 -Wall -DDATADIR=\""$(gladedir)/"\"
|
|
#CFLAGS += -pg -O2 -Wall -DDATADIR=\""$(gladedir)/"\"
|
|
|
|
gstmediaplay_CFLAGS = $(shell gnome-config --cflags gnomeui) $(shell libglade-config --cflags gnome) \
|
|
-I..
|
|
|
|
gstmediaplay_LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome) \
|
|
../gst/libgst.la ./libgstmediaplay.la
|
|
|
|
|
|
if HAVE_LIBXV
|
|
xvlibs=-lXv
|
|
else
|
|
xvlibs=
|
|
endif
|
|
|
|
gstmediaplay_LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
|
|
|