mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
01eb2caf72
Original commit message from CVS: The bonobo component now works on audio only (mp3/vorbis). Video is broken because bonobo does not handle multithreading yet. Added Bonobo toolbar and menu.
32 lines
910 B
Makefile
32 lines
910 B
Makefile
Gamesdir = $(datadir)/gnome/apps/Games
|
|
|
|
INCLUDES = -I$(top_srcdir)/gst \
|
|
-I$(top_srcdir)/gstplay \
|
|
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-I$(includedir) \
|
|
$(BONOBOX_TEST_CFLAGS) -Wall -O2
|
|
|
|
bin_PROGRAMS = bonobo-gstmediaplay
|
|
|
|
bonobo_gstmediaplay_SOURCES = \
|
|
bonobo-gstmediaplay.c
|
|
|
|
bonobo_gstmediaplay_CFLAGS = -Wall -O2 \
|
|
$(shell gnome-config --cflags gnomeui bonobo bonobox) $(shell libglade-config --cflags gnome) \
|
|
$(shell gstreamer-config --clfags )
|
|
|
|
bonobo_gstmediaplay_LDADD = \
|
|
$(top_srcdir)/gstplay/libgstmediaplay.la
|
|
|
|
bonobo_gstmediaplay_LDFLAGS = \
|
|
$(shell gnome-config --libs gnomeui bonobo bonobox) $(shell libglade-config --libs gnome) \
|
|
$(shell gstreamer-config --libs )
|
|
|
|
oafdir = $(datadir)/oaf
|
|
OAF_FILES = gstmediaplay.oafinfo
|
|
oaf_DATA = $(OAF_FILES)
|
|
|
|
EXTRA_DIST = gstmediaplay.desktop $(OAF_FILES) \
|
|
bonobo-gstmediaplay-ui.xml
|
|
|