we love 80
authorThomas Vander Stichele <thomas@apestaart.org>
Thu, 12 Feb 2004 19:10:23 +0000 (19:10 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 12 Feb 2004 19:10:23 +0000 (19:10 +0000)
Original commit message from CVS:
we love 80

Makefile.am

index d3dadbd..2dd0347 100644 (file)
@@ -87,20 +87,20 @@ GCOV_DIRS=gst libs
 ## .PHONY so it always rebuilds it
 .PHONY: coverage-report.txt
 coverage-report.txt:
-       BBG_FILES=`find $(GCOV_DIRS) -name "*.bbg"` ;                             \
-       C_FILES= ;                                                                \
-       for F in $$BBG_FILES ; do                                                 \
-               F_nolibs=`echo $$F | sed -e 's/.libs\///g'` ;                     \
-               C=`echo $$F_nolibs | sed -e 's/.bbg/.c/g'` ;                      \
-               B=`basename $$F .bbg` ;                                           \
-               D=`dirname $$F` ;                                                 \
-               DA=`echo $$F | sed -e 's/.bbg/.da/g'` ;                           \
-               DA_libs=`echo $$D/.libs/$$B/.da` ;                                \
-               if test -e $$DA || test -e $$DA_libs; then                        \
-                       C_FILES="$$C_FILES $$C" ;                                 \
-               fi ;                                                              \
-       done ;                                                                    \
-       echo $$C_FILES ;                                                          \
+       BBG_FILES=`find $(GCOV_DIRS) -name "*.bbg"` ;                     \
+       C_FILES= ;                                                        \
+       for F in $$BBG_FILES ; do                                         \
+               F_nolibs=`echo $$F | sed -e 's/.libs\///g'` ;             \
+               C=`echo $$F_nolibs | sed -e 's/.bbg/.c/g'` ;              \
+               B=`basename $$F .bbg` ;                                   \
+               D=`dirname $$F` ;                                         \
+               DA=`echo $$F | sed -e 's/.bbg/.da/g'` ;                   \
+               DA_libs=`echo $$D/.libs/$$B/.da` ;                        \
+               if test -e $$DA || test -e $$DA_libs; then                \
+                       C_FILES="$$C_FILES $$C" ;                         \
+               fi ;                                                      \
+       done ;                                                            \
+       echo $$C_FILES ;                                                  \
        $(top_builddir)/testsuite/decode-gcov --report $$C_FILES > coverage-report.txt
 
 check-coverage: clean-gcov all check coverage-report.txt