mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
82f6368bf0
Original commit message from CVS: Added man pages.
39 lines
807 B
Makefile
39 lines
807 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
# FIXME FIXME
|
|
|
|
LIBADD += $(GNOME_LIBS) $(GST_LIBS)
|
|
CFLAGS += $(GNOME_CFLAGS) $(GST_CFLAGS) -DDATADIR=\""$(gladedir)/"\"
|
|
|
|
bin_PROGRAMS = gstmediaplay
|
|
|
|
lib_LTLIBRARIES = libgstmediaplay.la
|
|
|
|
man_MANS = gstmediaplay.1
|
|
|
|
gladedir = $(datadir)/gstmediaplay
|
|
glade_DATA = gstmediaplay.glade play.xpm stop.xpm pause.xpm
|
|
|
|
EXTRA_DIST = $(glade_DATA) $(man_MANS)
|
|
|
|
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
|
|
|
|
|
|
libgstmediaplay_la_LDFLAGS = -rdynamic
|
|
|
|
gstmediaplay_CFLAGS = $(LIBGLADE_GNOME_CFLAGS)
|
|
gstmediaplay_LDADD = $(GST_LIBS) $(LIBGLADE_GNOME_LIBS) libgstmediaplay.la
|