gstreamer/gst-libs/gst/interfaces/Makefile.am
David Schleef c3d4977761 Split out GST_PLUGINS_BAD_CFLAGS from GST_CFLAGS
Move include directives for gst-libs into GST_PLUGINS_BAD_CFLAGS,
and fix all the Makefiles that use it.  This is so that all the
include directories are added in the proper order: first the
directories in srcdir/builddir, then gst-plugins-base dirs, then
gstreamer dirs.  If the order is wrong, installed headers may be
used instead of local headers and/or uninstalled headers from -base.
2010-05-19 18:24:02 -07:00

45 lines
1.1 KiB
Makefile

lib_LTLIBRARIES = libgstphotography-@GST_MAJORMINOR@.la
libgstphotographyincludedir = \
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/interfaces
headers_photography = \
photography.h
# variables used for enum/marshal generation
glib_enum_headers=$(headers_photography)
glib_enum_define=GST_PHOTOGRAPHY
glib_gen_prefix=gst_photography
glib_gen_basename=photography
built_sources = \
photography-enumtypes.c
built_headers = \
photography-enumtypes.h
libgstphotographyinclude_HEADERS = \
$(headers_photography)
nodist_libgstphotographyinclude_HEADERS = \
photography-enumtypes.h
libgstphotography_@GST_MAJORMINOR@_la_SOURCES = \
photography.c
nodist_libgstphotography_@GST_MAJORMINOR@_la_SOURCES = \
$(built_sources)
libgstphotography_@GST_MAJORMINOR@_la_CFLAGS = \
-DGST_USE_UNSTABLE_API \
$(GST_PLUGINS_BAD_CFLAGS) \
$(GST_CFLAGS)
libgstphotography_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS)
libgstphotography_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
BUILT_SOURCES = \
$(built_sources) \
$(built_headers)
CLEANFILES = $(BUILT_SOURCES)
include $(top_srcdir)/common/gst-glib-gen.mak