gstreamer/ext/mpeg2enc/Makefile.am
Tim-Philipp Müller f8f4620451 build: fix CFLAGS order and LIBS order
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS,
then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins
base libs, then GST_BASE_LIB then GST_LIBS.
2012-02-03 00:50:33 +00:00

23 lines
647 B
Makefile

plugin_LTLIBRARIES = libgstmpeg2enc.la
libgstmpeg2enc_la_SOURCES = \
gstmpeg2enc.cc \
gstmpeg2encoptions.cc \
gstmpeg2encoder.cc \
gstmpeg2encstreamwriter.cc \
gstmpeg2encpicturereader.cc
libgstmpeg2enc_la_CXXFLAGS = \
$(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MPEG2ENC_CFLAGS)
libgstmpeg2enc_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(MPEG2ENC_LIBS)
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstmpeg2enc_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = \
gstmpeg2enc.hh \
gstmpeg2encoder.hh \
gstmpeg2encoptions.hh \
gstmpeg2encstreamwriter.hh \
gstmpeg2encpicturereader.hh