New layouting classes
[platform/core/uifw/dali-toolkit.git] / build / tizen / Makefile.am
1 #
2 # Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 SUBDIRS = dali-toolkit
18
19 if ENABLE_JAVASCRIPT_PLUGIN
20 SUBDIRS +=plugins/javascript
21 endif
22
23 if ENABLE_CSHARP_PLUGIN
24 SUBDIRS +=plugins/csharp
25 endif
26
27 # perform documentation last, so it doesn't prevent code from building if there's an error
28 SUBDIRS += docs
29
30 pkgconfigdir = $(libdir)/pkgconfig
31
32 pkgconfig_DATA = dali-toolkit.pc
33
34 MAINTAINERCLEANFILES = \
35     aclocal.m4 \
36     autom4te.cache \
37     config.guess \
38     config.sub \
39     configure \
40     depcomp \
41     install-sh \
42     ltmain.sh \
43     missing \
44     `find "$(srcdir)" -type f -name Makefile.in -print` \
45     `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
46
47 CLEANFILES = \
48         `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
49
50 COVERAGE_DIR=.cov
51 COVERAGE_OUTPUT_DIR=doc/coverage
52
53 # From lcov version 1.10 onwards, branch coverage is off by default and earlier versions do not support the rc option
54 LCOV_OPTS=`if [ \`printf "\\\`lcov --version | cut -d' ' -f4\\\`\n1.10\n" | sort -V | head -n 1\` = 1.10 ] ; then echo "--rc lcov_branch_coverage=1" ; fi`
55
56 rename_cov_data:
57         @test -z $(COVERAGE_DIR) || mkdir -p $(COVERAGE_DIR)
58         @rm -f $(COVERAGE_DIR)/*
59         @cp dali-toolkit/.libs/*.gcda dali-toolkit/.libs/*.gcno  $(COVERAGE_DIR)
60         @for i in `find $(COVERAGE_DIR) -name "libdali_toolkit*_la-*.gcda" -o -name "libdali_toolkit*_la-*.gcno"` ;\
61                 do dest=`echo $$i | sed s/libdali_.*_la-//` ; mv $$i $$dest ; echo $$i ; done
62
63 cov_data: rename_cov_data
64         @cd $(COVERAGE_DIR) ; lcov $(LCOV_OPTS) --base-directory . --directory . -c -o dali.info
65         @cd $(COVERAGE_DIR) ; lcov $(LCOV_OPTS) --remove dali.info "/usr/include/*" "*/dali-env/*" "*solid-color-actor*" "*/dali-toolkit/third-party/*"  -o dali.info
66         @test -z $(COVERAGE_OUTPUT_DIR) || mkdir -p $(COVERAGE_OUTPUT_DIR)
67
68 coverage: cov_data
69         @genhtml $(LCOV_OPTS) -o $(COVERAGE_OUTPUT_DIR) $(COVERAGE_DIR)/dali.info
70
71 reset_coverage:
72         @lcov -z --directory `pwd`