docs/random/ds/0.9-suggested-changes: random notes
[platform/upstream/gstreamer.git] / Makefile.am
1 PACKAGE = @PACKAGE@
2 VERSION = @VERSION@
3
4 if BUILD_DOCS
5 SUBDIRS_DOCS = docs
6 else
7 SUBDIRS_DOCS =
8 endif
9
10 if BUILD_TESTS
11 SUBDIRS_TESTS = tests testsuite
12 else
13 SUBDIRS_TESTS =
14 endif
15
16 if BUILD_EXAMPLES
17 SUBDIRS_EXAMPLES = examples
18 else
19 SUBDIRS_EXAMPLES =
20 endif
21
22 all-local: gst-element-check-@GST_MAJORMINOR@.m4
23
24 gst-element-check-@GST_MAJORMINOR@.m4: gst-element-check.m4
25         cp $(srcdir)/gst-element-check.m4 gst-element-check-@GST_MAJORMINOR@.m4
26
27 ACLOCAL_AMFLAGS = -I common/m4
28
29 aclocaldir = $(datadir)/aclocal
30 aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4
31
32 SUBDIRS = include gst libs tools \
33         $(SUBDIRS_TESTS) $(SUBDIRS_EXAMPLES) \
34         pkgconfig po \
35         $(SUBDIRS_DOCS)
36
37 # These are all the possible subdirs
38 DIST_SUBDIRS = include libs gst \
39         tools \
40         tests testsuite \
41         examples \
42         pkgconfig \
43         po \
44         docs
45
46 EXTRA_DIST = gstreamer.spec.in gst-element-check.m4 \
47              configure.ac autogen.sh depcomp \
48              REQUIREMENTS ABOUT-NLS RELEASE DOCBUILDING DEVEL \
49              idiottest.mak common
50
51 CLEANFILES = gst-element-check-@GST_MAJORMINOR@.m4
52
53
54 dist-hook:
55         cp gstreamer.spec $(distdir)
56         rm -rf `find $(distdir)/common -name CVS`
57
58 rpm: dist
59         rpm -ta $(distdir).tar.gz
60
61 include $(top_srcdir)/idiottest.mak
62
63
64 if GST_GCOV_ENABLED
65 clean-gcov:
66         find -name "*.da" -o -name "*.gcov" | xargs rm || true
67
68 clean-bbg:
69         find -name "*.bbg" -o -name "*.bb" | xargs rm || true
70
71 GCOV_DIRS=gst libs
72
73 ## .PHONY so it always rebuilds it
74 .PHONY: coverage-report.txt
75 coverage-report.txt:
76         BBG_FILES=`find $(GCOV_DIRS) -name "*.bbg"` ;                             \
77         C_FILES= ;                                                                \
78         for F in $$BBG_FILES ; do                                                 \
79                 F_nolibs=`echo $$F | sed -e 's/.libs\///g'` ;                     \
80                 C=`echo $$F_nolibs | sed -e 's/.bbg/.c/g'` ;                      \
81                 B=`basename $$F .bbg` ;                                           \
82                 D=`dirname $$F` ;                                                 \
83                 DA=`echo $$F | sed -e 's/.bbg/.da/g'` ;                           \
84                 DA_libs=`echo $$D/.libs/$$B/.da` ;                                \
85                 if test -e $$DA || test -e $$DA_libs; then                        \
86                         C_FILES="$$C_FILES $$C" ;                                 \
87                 fi ;                                                              \
88         done ;                                                                    \
89         echo $$C_FILES ;                                                          \
90         $(top_builddir)/testsuite/decode-gcov --report $$C_FILES > coverage-report.txt
91
92 check-coverage: clean-gcov all check coverage-report.txt
93         cat coverage-report.txt
94
95 else
96 coverage-report.txt:
97         echo "Need to reconfigure with --enable-gcov"
98
99 check-coverage:
100         echo "Need to reconfigure with --enable-gcov"
101
102 endif