Remove CXX03 Build
[platform/core/uifw/dali-core.git] / build / tizen / Makefile.am
1 # Copyright (c) 2019 Samsung Electronics Co., Ltd.
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6
7 # http://www.apache.org/licenses/LICENSE-2.0
8
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 SUBDIRS = dali-core
17
18 pkgconfigdir = $(libdir)/pkgconfig
19
20 pkgconfig_DATA = dali-core.pc
21
22 MAINTAINERCLEANFILES = \
23     aclocal.m4 \
24     autom4te.cache \
25     config.guess \
26     config.sub \
27     configure \
28     depcomp \
29     install-sh \
30     ltmain.sh \
31     missing \
32     `find "$(srcdir)" -type f -name Makefile.in -print` \
33     `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
34
35 CLEANFILES = \
36     `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
37
38 COVERAGE_DIR=.cov
39 COVERAGE_OUTPUT_DIR=doc/coverage
40
41 # From lcov version 1.10 onwards, branch coverage is off by default and earlier versions do not support the rc option
42 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`
43
44 rename_cov_data:
45         @test -z $(COVERAGE_DIR) || mkdir -p $(COVERAGE_DIR)
46         @rm -f $(COVERAGE_DIR)/*
47         @cp dali-core/.libs/*.gcda dali-core/.libs/*.gcno $(COVERAGE_DIR)
48         @for i in `find $(COVERAGE_DIR) -name "libdali*_la-*.gcda" -o -name "libdali*_la-*.gcno"` ;\
49                 do mv $$i `echo $$i | sed s/libdali_.*_la-//` ; echo $$i ; done
50
51 cov_data: rename_cov_data
52         @cd $(COVERAGE_DIR) ; lcov $(LCOV_OPTS) --base-directory . --directory . -c -o dali.info
53         @cd $(COVERAGE_DIR) ; lcov $(LCOV_OPTS) --remove dali.info "*/dali-env/*" "/usr/include/*" "public-api/shader-effects/*" "*/image-actor*" -o dali.info
54         @test -z $(COVERAGE_OUTPUT_DIR) || mkdir -p $(COVERAGE_OUTPUT_DIR)
55
56 coverage: cov_data
57         @genhtml $(LCOV_OPTS) -o $(COVERAGE_OUTPUT_DIR) $(COVERAGE_DIR)/dali.info
58
59 reset_coverage:
60         @lcov -z --directory `pwd`