mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
95ada43982
Original commit message from CVS: * configure.ac: split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS so that GST_BASE_CFLAGS can go inbetween them, making sure we use uninstalled gst-libs headers * docs/libs/Makefile.am: * ext/alsa/Makefile.am: * ext/cdparanoia/Makefile.am: * ext/gnomevfs/Makefile.am: * ext/libvisual/Makefile.am: * ext/ogg/Makefile.am: * ext/theora/Makefile.am: * ext/vorbis/Makefile.am: * gst-libs/gst/audio/Makefile.am: * gst-libs/gst/cdda/Makefile.am: * gst-libs/gst/interfaces/Makefile.am: * gst-libs/gst/riff/Makefile.am: * gst-libs/gst/rtp/Makefile.am: * gst-libs/gst/tag/Makefile.am: * gst/adder/Makefile.am: * gst/audioconvert/Makefile.am: * gst/audiorate/Makefile.am: * gst/audioresample/Makefile.am: * gst/playback/Makefile.am: * gst/tcp/Makefile.am: * gst/videoscale/Makefile.am: * gst/volume/Makefile.am: * sys/ximage/Makefile.am: * sys/xvimage/Makefile.am: * tests/icles/Makefile.am: adapt
64 lines
2 KiB
Makefile
64 lines
2 KiB
Makefile
# variables used for enum/marshal generation
|
|
glib_enum_headers=multichannel.h
|
|
glib_enum_define=GST_AUDIO
|
|
glib_enum_prefix=gst_audio
|
|
|
|
built_sources = multichannel-enumtypes.c
|
|
built_headers = multichannel-enumtypes.h
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
lib_LTLIBRARIES = \
|
|
libgstaudio-@GST_MAJORMINOR@.la
|
|
noinst_LTLIBRARIES = libgstaudiofilterexample.la
|
|
|
|
EXTRA_DIST = gstaudiofiltertemplate.c make_filter
|
|
CLEANFILES = gstaudiofilterexample.c \
|
|
$(BUILT_SOURCES)
|
|
|
|
libgstaudio_@GST_MAJORMINOR@_la_SOURCES = \
|
|
audio.c \
|
|
gstaudioclock.c \
|
|
mixerutils.c \
|
|
multichannel.c \
|
|
gstaudiofilter.c \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstbaseaudiosink.c \
|
|
gstbaseaudiosrc.c \
|
|
gstringbuffer.c
|
|
nodist_libgstaudio_@GST_MAJORMINOR@_la_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgstaudio_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/audio
|
|
libgstaudio_@GST_MAJORMINOR@include_HEADERS = \
|
|
audio.h \
|
|
gstaudioclock.h \
|
|
gstaudiofilter.h \
|
|
gstaudiosink.h \
|
|
gstaudiosrc.h \
|
|
gstbaseaudiosink.h \
|
|
gstbaseaudiosrc.h \
|
|
gstringbuffer.h \
|
|
mixerutils.h \
|
|
multichannel.h
|
|
|
|
nodist_libgstaudio_@GST_MAJORMINOR@include_HEADERS = \
|
|
multichannel-enumtypes.h
|
|
|
|
libgstaudio_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstaudio_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la
|
|
libgstaudio_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|
|
libgstaudiofilterexample_la_SOURCES = gstaudiofilterexample.c
|
|
libgstaudiofilterexample_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstaudiofilterexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
gstaudiofilterexample.c: $(srcdir)/make_filter $(srcdir)/gstaudiofiltertemplate.c
|
|
$(srcdir)/make_filter AudiofilterExample $(srcdir)/gstaudiofiltertemplate.c
|
|
|
|
noinst_PROGRAMS = testchannels
|
|
testchannels_SOURCES = testchannels.c
|
|
testchannels_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
testchannels_LDADD = $(GST_LIBS)
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|