mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
0032727103
Original commit message from CVS: More incremental updates. I can now successfully produce an rpm simply by typing `./autogen.sh;make rpm`. This is good ;-)
33 lines
742 B
Makefile
33 lines
742 B
Makefile
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
|
LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir)/gst \
|
|
$(shell gnome-config --cflags gnomeui)
|
|
|
|
|
|
lib_LTLIBRARIES = libgsteditor.la
|
|
|
|
libgsteditor_la_SOURCES = \
|
|
gsteditor.c \
|
|
gsteditorelement.c \
|
|
gsteditorbin.c \
|
|
gsteditorcanvas.c \
|
|
gsteditorpad.c \
|
|
gsteditorconnection.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 = \
|
|
gstelementselect.h \
|
|
gsteditorcreate.h
|
|
|
|
EXTRA_DIST = editor.glade editorelement.glade
|