(MeshActor) Add a reference to AnimatableMesh
[platform/core/uifw/dali-core.git] / build / slp / Makefile.am
1 # Copyright (c) 2014 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 pkgconfig_DATA = dali-core.pc dali-test-suite-utils.pc
20
21 dalitestsuitedir = $(includedir)/dali/test-suite-utils
22 dalitestsuite_HEADERS = $(test_suite_utils_header_files)
23
24 MAINTAINERCLEANFILES = \
25     aclocal.m4 \
26     autom4te.cache \
27     config.guess \
28     config.sub \
29     configure \
30     depcomp \
31     install-sh \
32     ltmain.sh \
33     missing \
34     `find "$(srcdir)" -type f -name Makefile.in -print` \
35     `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
36
37 CLEANFILES = \
38     `find . \( -name "*.gcov" -o -name "*.gcno" -o -name "*.gcda" \) -print`
39
40 COVERAGE_DIR=.cov
41 COVERAGE_OUTPUT_DIR=doc/coverage
42
43 cov_data:
44         @test -z $(COVERAGE_DIR) || mkdir -p $(COVERAGE_DIR)
45         @rm -f $(COVERAGE_DIR)/*
46         @cp dali-core/.libs/*.gcda dali-core/.libs/*.gcno $(COVERAGE_DIR)
47         @for i in `find $(COVERAGE_DIR) -name "libdali_core_la-*.gcda" -o -name "libdali_core_la-*.gcno"` ;\
48                 do mv $$i `echo $$i | sed s/libdali_core_la-//` ; echo $$i ; done
49         @for i in `find $(COVERAGE_DIR) -name "libdali_la-*.gcda" -o -name "libdali_la-*.gcno"` ;\
50                 do mv $$i `echo $$i | sed s/libdali_la-//` ; done
51         @cd $(COVERAGE_DIR) ; lcov --base-directory . --directory . -c -o dali.info
52         @cd $(COVERAGE_DIR) ; lcov --remove dali.info "*boost*" "*/dali-env/*" "/usr/include/*" -o dali.info
53         @test -z $(COVERAGE_OUTPUT_DIR) || mkdir -p $(COVERAGE_OUTPUT_DIR)
54
55 coverage: cov_data
56         @genhtml -o $(COVERAGE_OUTPUT_DIR) $(COVERAGE_DIR)/dali.info
57
58 reset_coverage:
59         @lcov -z --directory `pwd`