mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
f4a635c8dc
Original commit message from CVS: Pending editor changes. fixes for autoplug of elementary MPEG1 video streams make sure mp3 types get compiled videosink changes for xml loading
45 lines
1 KiB
Makefile
45 lines
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
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gsteditorproject.h \
|
|
gstelementselect.h \
|
|
gsteditorpalette.h \
|
|
gsteditorproperty.h \
|
|
gsteditorimage.h \
|
|
gsteditorcreate.h
|
|
|
|
CFLAGS = -O2 -Wall
|
|
|
|
EXTRA_DIST = editor.glade editorelement.glade
|