mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
43 lines
962 B
Makefile
43 lines
962 B
Makefile
CFLAGS += -DDATADIR="\"$(gladedir)/\"" $(GNOME_CFLAGS) $(LIBGLADE_GNOME_CFLAGS)
|
|
LDFLAGS += $(GNOME_LIBS) $(LIBGLADE_GNOME_LIBS)
|
|
|
|
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 $(GST_LIBS)
|
|
|
|
gladedir = $(datadir)/gsteditor
|
|
glade_DATA = editor.glade editorelement.glade
|
|
|
|
noinst_HEADERS = \
|
|
gsteditorproject.h \
|
|
gstelementselect.h \
|
|
gsteditorpalette.h \
|
|
gsteditorproperty.h \
|
|
gsteditorimage.h \
|
|
gsteditorcreate.h
|
|
|
|
SUBDIRS = pixmaps
|
|
|
|
EXTRA_DIST = $(glade_DATA)
|