-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
33 lines (25 loc) · 920 Bytes
/
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
############################################################################
# This file is part of the UniSet library #
############################################################################
FIRSTSUBDIRS=proto
SUBDIRS=. contrib src lib include Utilities tests extensions wrappers docs
# testsuite
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libUniSet3.pc
# Hack for fix build order
all-local:
$(MAKE) -C $(FIRSTSUBDIRS) -j1 all
clean-local:
$(MAKE) -C $(FIRSTSUBDIRS) clean
install-data-local:
$(MAKE) -C $(FIRSTSUBDIRS) -j1 install
pvs-check:
make clean
pvs-studio-analyzer trace -- jmake
pvs-studio-analyzer analyze -j$(nproc)
plog-converter -a GA:1,2 -t tasklist -o uniset.pvs.tasks PVS-Studio.log
if HAVE_COVERAGE
COVERAGE_DIRS=$(COVERAGE_DEFAULT_DIRS)
include $(top_builddir)/testsuite/testcoverage-common.mk
endif
include $(top_builddir)/include.mk