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
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
LDFLAGS = $(shell gnome-config --libs gnomeui) $(shell libglade-config --libs gnome)
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)/gst $(shell libglade-config --cflags gnome) \
|
|
$(shell gnome-config --cflags gnomeui)
|
|
|
|
|
|
lib_LTLIBRARIES = libgsteditor.la
|
|
|
|
libgsteditor_la_SOURCES = \
|
|
gsteditor.c \
|
|
gsteditorproject.c \
|
|
gsteditorprojectview.c \
|
|
gsteditorelement.c \
|
|
gsteditorbin.c \
|
|
gsteditorcanvas.c \
|
|
gsteditorpad.c \
|
|
gsteditorpadtemplate.c \
|
|
gsteditorconnection.c \
|
|
gsteditorimage.c \
|
|
gsteditorpalette.c \
|
|
gsteditorproperty.c \
|
|
gstelementselect.c \
|
|
gsteditorcreate.c
|
|
|
|
libgsteditorincludedir = $(includedir)/gst
|
|
libgsteditorinclude_HEADERS = \
|
|
gsteditor.h
|
|
|
|
bin_PROGRAMS = gsteditor
|
|
gsteditor_SOURCES = editor.c
|
|
gsteditor_LDFLAGS = libgsteditor.la
|
|
|
|
gladedir = $(datadir)/gsteditor
|
|
glade_DATA = editor.glade editorelement.glade
|
|
|
|
noinst_HEADERS = \
|
|
gsteditorproject.h \
|
|
gstelementselect.h \
|
|
gsteditorpalette.h \
|
|
gsteditorproperty.h \
|
|
gsteditorimage.h \
|
|
gsteditorcreate.h
|
|
|
|
CFLAGS = -O2 -Wall -DDATADIR="\"$(gladedir)/\""
|
|
|
|
SUBDIRS = pixmaps
|
|
|
|
EXTRA_DIST = $(glade_DATA)
|