Source tree moved to mafw-gst-subtitles-renderer directory.
[mafwsubrenderer] / mafw-gst-subtitles-renderer / Makefile.am
1 #
2 # Makefile.am for MAFW gst renderer library.
3 #
4 # Author: Visa Smolander <visa.smolander@nokia.com>
5 #
6 # Copyright (C) 2007, 2008, 2009 Nokia. All rights reserved.
7
8
9 SUBDIRS                         = libmafw-gst-renderer applet po
10
11 if ENABLE_TESTS
12 SUBDIRS                         += tests
13 endif
14
15 noinst_DATA                     = mafw-gst-renderer-uninstalled.pc
16 EXTRA_DIST                      = mafw-gst-renderer-uninstalled.pc.in
17
18 # Extra clean files so that maintainer-clean removes *everything*
19 MAINTAINERCLEANFILES            = aclocal.m4 compile config.guess \
20                                   config.sub configure depcomp \
21                                   install-sh ltmain.sh Makefile.in \
22                                   missing config.h.in *-stamp omf.make
23
24 if ENABLE_COVERAGE
25 LCOV_DATA_DIR                   = lcov-data
26 LCOV_DATA_FILE                  = lcov.info
27
28 distclean-local:
29         -rm -rf $(LCOV_DATA_DIR)
30
31 lcov-zero-counters:
32         $(LCOV) -z -d .
33
34 lcov:
35         -mkdir -p $(LCOV_DATA_DIR)
36         $(LCOV) -c -d . -o $(LCOV_DATA_DIR)/$(LCOV_DATA_FILE)
37         genhtml -s $(LCOV_DATA_DIR)/$(LCOV_DATA_FILE) -o $(LCOV_DATA_DIR)
38         @echo
39         @echo "Please, have a look on ./$(LCOV_DATA_DIR)/index.html for coverage statistics"
40         @echo
41 endif