forked from aff4/aff4-cpp-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
32 lines (27 loc) · 708 Bytes
/
Makefile.am
File metadata and controls
32 lines (27 loc) · 708 Bytes
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
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
EXTRA_DIST = autogen.sh src/aff4.rc libaff4.pc COPYING README.md
SUBDIRS = src tests docs examples
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA=libaff4.pc
# Netbeans support for cppunit testing.
# Test Directory
TESTDIR=tests
# build tests
build-tests: check
# Run Test Targets
test:
if HAVE_CPPUNIT
@if [ "${TEST}" = "" ]; \
then \
${TESTDIR}/container || true; \
${TESTDIR}/image || true; \
${TESTDIR}/streams || true; \
${TESTDIR}/compression || true; \
${TESTDIR}/resolver || true; \
${TESTDIR}/cache || true; \
${TESTDIR}/version || true; \
else \
./${TEST} || true; \
fi
endif