-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.am
78 lines (66 loc) · 2.19 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# libgovernor - Open-BLDC configuration and debug protocol library
# Copyright (C) 2010 by Piotr Esden-Tempski <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I m4
LCOV_OUTPUT = $(top_srcdir)/doc/lg_test_coverage
LCOV_LCOV = @LCOV@
LCOV_GENHTML = @GENHTML@
LCOV_GCOV_ENABLED = @GCOV_ENABLED@
SUBDIRS = include src tests doc
# Doxygen
#include $(top_srcdir)/aminclude.am
CLEANFILES = \
*/*.gcda \
*/*.gcdo \
*/*.gcno \
libgovernor.info
MAINTAINERCLEANFILES = \
aclocal.m4 \
configure \
include/config.h.in \
Makefile.in \
config.log \
config.guess \
config.sub \
include/stamp-h \
include/stamp-h.in \
depcomp \
install-sh \
ltmain.sh \
missing \
compile \
test-driver \
m4/*
# Make sure no sticky bits go into the distribution.
# (Debian policy is to create user directories in g+s,
# we don't want to export this :o)).
dist-hook:
-chmod -R a-s $(distdir)
macx_embed: all
cp src/.libs/libgovernor.dylib .
install_name_tool -id @executable_path/../Frameworks/libgovernor.dylib libgovernor.dylib
lcov: check
@if [ "x$(LCOV_GCOV_ENABLED)" = "xyes" ]; then \
$(LCOV_LCOV) --directory . --capture --output-file libgovernor.info --test-name LG_LCOV; \
LANG=C $(LCOV_GENHTML) --prefix $(shell pwd | sed s,\/libgovernor,,) --output-directory $(LCOV_OUTPUT) --title "libgovernor Code Coverage" --show-details libgovernor.info; \
echo "Point a web browser at $(LCOV_OUTPUT)/index.html to see results."; \
else \
echo "GCOV is not enabled. Please run './configure --enable-gcov; make clean'"; \
fi
lcov-clean:
$(RM) libgovernor.info
$(RM) -r $(LCOV_OUTPUT)
doxygen-clean:
$(RM) -r -f doc/doxygen