- use GST_CFLAGS only
authorWrobell <wrobell@ite.pl>
Sun, 16 Dec 2001 18:49:35 +0000 (18:49 +0000)
committerWrobell <wrobell@ite.pl>
Sun, 16 Dec 2001 18:49:35 +0000 (18:49 +0000)
Original commit message from CVS:
- use GST_CFLAGS only
- use AM_CFLAGS instead of CFLAGS so user cflags are not overwritten
- use LDADD instead of LIBS (by analogy for <program>_LDADD, look for
example in tools/Makefile.am) - kill me if it is wrong

tests/Makefile.am
tests/eos/Makefile.am
tests/muxing/Makefile.am
tests/nego/Makefile.am
tests/sched/Makefile.am

index 9eeeb6f..df08733 100644 (file)
@@ -12,8 +12,7 @@ paranoia rip mp3encode case4 markup load autoplug3 \
 incsched reaping threadlock mp1vid reconnect \
 faketest events timecache
 
-# we have nothing but apps here, we can do this safely
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
 
 EXTRA_DIST = README
index aa55a8f..0830600 100644 (file)
@@ -1,5 +1,4 @@
 noinst_PROGRAMS = case1 case2 case3 case4 case5 case6 case7
 
-# jsut apps here, this is safe
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
index 447ed2f..ea75084 100644 (file)
@@ -1,5 +1,4 @@
 noinst_PROGRAMS = case1 
 
-# jsut apps here, this is safe
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
index 7e47fff..320efb2 100644 (file)
@@ -1,5 +1,4 @@
 noinst_PROGRAMS = nego1
 
-# jsut apps here, this is safe
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)
index 8f1fa53..d1479cf 100644 (file)
@@ -6,6 +6,5 @@ endif
 
 dynamic_pipeline_SOURCES = dynamic-pipeline.c
 
-# nothing but apps here, this is safe
-LIBS = $(GST_LIBS)
-CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
+LDADD = $(GST_LIBS)
+AM_CFLAGS = $(GST_CFLAGS)