-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
48 lines (36 loc) · 1.2 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
ACLOCAL_AMFLAGS = -I config
SUBDIRS = doc include
pkgconfig_DATA = libmot.pc
#
# Library
#
lib_LTLIBRARIES = src/libmot.la
src_libmot_la_SOURCES = \
src/mot.cpp
src_libmot_la_CPPFLAGS = -Iinclude
src_libmot_la_CXXFLAGS = @LIBMOT_EXTRA_CXXFLAGS@
src_libmot_la_LIBADD =
#
# Tests
#
test_apps = \
tests/test_header_parameters \
tests/test_mot_headermode \
tests/test_mot_directorymode
tests_test_header_parameters_SOURCES = \
tests/test_header_parameters.cpp
tests_test_header_parameters_CPPFLAGS = -Iinclude ${CPPUNIT_CFLAGS}
tests_test_header_parameters_LDADD = -Lsrc/.libs -lmot ${CPPUNIT_LIBS}
tests_test_mot_headermode_SOURCES = \
tests/test_mot_headermode.cpp
tests_test_mot_headermode_CPPFLAGS = -Iinclude ${CPPUNIT_CFLAGS}
tests_test_mot_headermode_LDADD = -Lsrc/.libs -lmot ${CPPUNIT_LIBS}
tests_test_mot_directorymode_SOURCES = \
tests/test_mot_directorymode.cpp
tests_test_mot_directorymode_CPPFLAGS = -Iinclude ${CPPUNIT_CFLAGS}
tests_test_mot_directorymode_LDADD = -Lsrc/.libs -lmot ${CPPUNIT_LIBS}
check_PROGRAMS = ${test_apps}
# Run the test cases
TESTS = $(test_apps)
XFAIL_TESTS =
EXTRA_DIST = COPYING NEWS README.md INSTALL.md LICENCE AUTHORS ChangeLog TODO doc