-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
34 lines (25 loc) · 1.01 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
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = dist-zip foreign
EXTRA_DIST = makefile.vc nmake.opt \
makefile64.vc nmake64.opt \
makefile_mod.vc nmake_mod.opt \
makefile_mod64.vc nmake_mod64.opt \
fakeconfig.h fakeconfig.h.in \
config.h config.h.in \
config-msvc.h config-msvc.h.in \
Android_3.0.2.mk Android_4.3.0.mk \
spatialite-4.3.0.mk Android_4.4.0.mk spatialite-4.4.0.mk \
mainpage.doxy README.coverage spatialite-sql-latest.html
if ENABLE_EXAMPLES
EXAMPLES = examples
endif
SUBDIRS = src test $(EXAMPLES)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = spatialite.pc
coverage-init:
lcov --directory src --capture --initial --output-file libspatialite_cov.info
coverage::
lcov --rc lcov_branch_coverage=1 --directory src --output-file libspatialite_cov.info --capture
lcov --rc lcov_branch_coverage=1 --remove libspatialite_cov.info "*/src/gaiageo/*Lexer.l" --output-file libspatialite_cov.info
genhtml --rc lcov_branch_coverage=1 -o covresults libspatialite_cov.info
MOSTLYCLEANFILES = libspatialite_cov.info