mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 22:28:22 +00:00
d04099240b
Original commit message from CVS: 2001-12-14 Michael Meeks <michael@ximian.com> * gst/gst.c (gst_main, gst_main_quit): upd. * gst/gstutils.c (gst_util_has_arg): impl. (gst_util_get_int64_arg): impl. * plugins/mpeg2/video/gstmpeg2play.c (gst_mpeg2play_class_init): min frames per sec = 0. * plugins/mikmod/gstmikmod.c (gst_mikmod_class_init): s/16bit/use16bit/ properties can't begin with a non alpha. * tools/gstreamer-guilaunch.c: fresh from the ministy of nasty hacks. * tools/Makefile.am: enable gstreamer-guilaunch for Gnome 2.0 * tools/gstreamer-launch.c (main): upd. (idle_func): quit the mainloop.
40 lines
922 B
Makefile
40 lines
922 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
# FIXME FIXME
|
|
|
|
|
|
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
|
|
|
|
libgstmediaplayincludedir = $(includedir)/gstplay
|
|
libgstmediaplayinclude_HEADERS = \
|
|
gstplay.h
|
|
|
|
noinst_HEADERS = \
|
|
gstmediaplay.h \
|
|
gststatusarea.h \
|
|
callbacks.h
|
|
|
|
libgstmediaplay_la_LDFLAGS = -rdynamic
|
|
libgstmediaplay_la_CFLAGS = $(GNOME_CFLAGS) $(LIBGLADE_GNOME_CFLAGS) $(GST_CFLAGS) -DDATADIR=\""$(gladedir)/"\"
|
|
|
|
gstmediaplay_CFLAGS = $(LIBGLADE_GNOME_CFLAGS) $(GST_CFLAGS) -DDATADIR=\""$(gladedir)/"\"
|
|
gstmediaplay_LDADD = $(GST_LIBS) $(LIBGLADE_GNOME_LIBS) libgstmediaplay.la
|
|
|