[go: up one dir, main page]

Menu

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

Download this file

107 lines (98 with data), 2.3 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
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
# Library
lib_LTLIBRARIES = libvamos-body.la
libvamos_body_la_SOURCES = \
Aerodynamic_Device.cpp \
Rigid_Body.cpp \
Brake.cpp \
Car.cpp \
Car_Reader.cpp \
Clutch.cpp \
Contact_Point.cpp \
Dashboard.cpp \
Differential.cpp \
Drivetrain.cpp \
Engine.cpp \
Frame.cpp \
Fuel_Tank.cpp \
Gl_Car.cpp \
Particle.cpp \
Suspension.cpp \
Tire.cpp \
Transmission.cpp \
Wheel.cpp
pkginclude_HEADERS = \
Aerodynamic_Device.hpp \
Rigid_Body.hpp \
Brake.hpp \
Car.hpp \
Clutch.hpp \
Contact_Point.hpp \
Dashboard.hpp \
Differential.hpp \
Drivetrain.hpp \
Engine.hpp \
Frame.hpp \
Fuel_Tank.hpp \
Gl_Car.hpp \
Particle.hpp \
Suspension.hpp \
Tire.hpp \
Transmission.hpp \
Wheel.hpp
pkgincludedir = $(includedir)/@PACKAGE@/body
EXTRA_DIST = $(pkginclude_HEADERS)
AM_CXXFLAGS = -fPIC -Wall -pedantic
if DO_UNIT_TESTS
UNIT_TESTS = \
test_Aerodynamic_Device \
test_Car \
test_Frame \
test_Particle \
test_Rigid_Body
else
UNIT_TESTS =
endif
noinst_PROGRAMS = $(UNIT_TESTS)
EXTRA_PROGRAMS = $(UNIT_TESTS)
test_Aerodynamic_Device_SOURCES = test_Aerodynamic_Device.cpp
test_Aerodynamic_Device_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Aerodynamic_Device_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
Frame.lo \
Particle.lo \
Aerodynamic_Device.lo \
-lboost_unit_test_framework
test_Car_SOURCES = test_Car.cpp
test_Car_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Car_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
$(top_srcdir)/media/libvamos-media.la \
libvamos-body.la \
-lboost_unit_test_framework
test_Frame_SOURCES = test_Frame.cpp
test_Frame_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Frame_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
Frame.lo \
-lboost_unit_test_framework
test_Particle_SOURCES = test_Particle.cpp
test_Particle_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Particle_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
Frame.lo \
Particle.lo \
-lboost_unit_test_framework
test_Rigid_Body_SOURCES = test_Rigid_Body.cpp
test_Rigid_Body_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_Rigid_Body_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
$(top_srcdir)/media/libvamos-media.la \
libvamos-body.la \
-lboost_unit_test_framework
if DO_UNIT_TESTS
check-local: $(UNIT_TESTS)
for test in $(UNIT_TESTS); do \
echo $$test; \
$(top_srcdir)/body/$$test; \
done
endif