Clean up LDFLAGS, LIBS, CFLAGS
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 22 Nov 2009 19:30:58 +0000 (19:30 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 22 Nov 2009 19:30:58 +0000 (19:30 +0000)
Fix order, fix variables that don't exist, like GST_LIBS_LIBS,
use $(LIBM) instead of -lm, and move _LIBS from LDFLAGS to LIBADD.

Spotted by Havard Graff.

gst/dtmf/Makefile.am

index cbb351c..049518e 100644 (file)
@@ -14,8 +14,10 @@ noinst_HEADERS = gstdtmfsrc.h \
                  gstrtpdtmfcommon.h \
                  tone_detect.h
 
-libgstdtmf_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ERROR_CFLAGS) -DEXTERN_BUF -DRTP_SUPPORT
-libgstdtmf_la_LIBADD = $(GST_LIBS_LIBS) -lm
-libgstdtmf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstrtp-@GST_MAJORMINOR@
+libgstdtmf_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
+       -DEXTERN_BUF -DRTP_SUPPORT
+libgstdtmf_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstrtp-@GST_MAJORMINOR@ \
+       $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
+libgstdtmf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 libgstdtmf_la_LIBTOOLFLAGS = --tag=disable-static