[go: up one dir, main page]

Menu

[2d94f2]: / geometry / Makefile.am  Maximize  Restore  History

Download this file

92 lines (83 with data), 2.5 kB

 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Library
lib_LTLIBRARIES = libvamos-geometry.la
libvamos_geometry_la_SOURCES = \
Inertia_Tensor.cpp \
Interpolator.cpp \
Linear_Interpolator.cpp \
Material.cpp \
Parameter.cpp \
PID.cpp \
Rectangle.cpp \
Spline.cpp \
Three_Matrix.cpp \
Three_Vector.cpp \
Two_Vector.cpp
pkginclude_HEADERS = \
Constants.hpp \
Contact_Info.hpp \
Inertia_Tensor.hpp \
Interpolator.hpp \
Linear_Interpolator.hpp \
Material.hpp \
Numeric.hpp \
Parameter.hpp \
PID.hpp \
Rectangle.hpp \
Spline.hpp \
Three_Matrix.hpp \
Three_Vector.hpp \
Two_Vector.hpp
pkgincludedir = $(includedir)/@PACKAGE@/geometry
EXTRA_DIST = $(pkginclude_HEADERS)
AM_CXXFLAGS = -fPIC -Wall -pedantic
# Unit Tests
if DO_UNIT_TESTS
UNIT_TESTS = \
test_Linear_Interpolator \
test_Numeric \
test_PID \
test_Rectangle \
test_Spline \
test_Three_Matrix \
test_Three_Vector \
test_Two_Vector
else
UNIT_TESTS =
endif
noinst_PROGRAMS = $(UNIT_TESTS)
EXTRA_PROGRAMS = $(UNIT_TESTS)
test_Linear_Interpolator_SOURCES = test_Linear_Interpolator.cpp
test_Linear_Interpolator_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Linear_Interpolator_LDADD = \
Linear_Interpolator.lo \
Interpolator.lo \
Two_Vector.lo \
-lboost_unit_test_framework
test_Numeric_SOURCES = test_Numeric.cpp
test_Numeric_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Numeric_LDADD = -lboost_unit_test_framework
test_PID_SOURCES = test_PID.cpp
test_PID_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_PID_LDADD = PID.o -lboost_unit_test_framework
test_Rectangle_SOURCES = test_Rectangle.cpp
test_Rectangle_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Rectangle_LDADD = Rectangle.lo Two_Vector.lo -lboost_unit_test_framework
test_Spline_SOURCES = test_Spline.cpp
test_Spline_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Spline_LDADD = Spline.lo Interpolator.lo Two_Vector.lo -lboost_unit_test_framework
test_Three_Matrix_SOURCES = test_Three_Matrix.cpp
test_Three_Matrix_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Three_Matrix_LDADD = Three_Vector.lo Three_Matrix.lo -lboost_unit_test_framework
test_Three_Vector_SOURCES = test_Three_Vector.cpp
test_Three_Vector_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Three_Vector_LDADD = Three_Vector.lo Three_Matrix.lo -lboost_unit_test_framework
test_Two_Vector_SOURCES = test_Two_Vector.cpp
test_Two_Vector_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Two_Vector_LDADD = Two_Vector.lo -lboost_unit_test_framework
if DO_UNIT_TESTS
check-local: $(UNIT_TESTS)
for test in $(UNIT_TESTS); do \
echo $$test; \
$(top_srcdir)/geometry/$$test; \
done
endif