[go: up one dir, main page]

Menu

[9202b6]: / body / Makefile.am  Maximize  Restore  History

Download this file

101 lines (92 with data), 2.1 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
lib_LTLIBRARIES = libvamos-body.la
libvamos_body_la_SOURCES = \
Aerodynamic_Device.cc \
Rigid_Body.cc \
Brake.cc \
Car.cc \
Car_Reader.cc \
Clutch.cc \
Contact_Point.cc \
Dashboard.cc \
Differential.cc \
Drivetrain.cc \
Engine.cc \
Frame.cc \
Fuel_Tank.cc \
Gl_Car.cc \
Particle.cc \
Suspension.cc \
Tire.cc \
Transmission.cc \
Wheel.cc
pkginclude_HEADERS = \
Aerodynamic_Device.h \
Rigid_Body.h \
Brake.h \
Car.h \
Clutch.h \
Contact_Point.h \
Dashboard.h \
Differential.h \
Drivetrain.h \
Engine.h \
Frame.h \
Fuel_Tank.h \
Gl_Car.h \
Particle.h \
Suspension.h \
Tire.h \
Transmission.h \
Wheel.h
pkgincludedir = $(includedir)/@PACKAGE@/body
EXTRA_DIST = $(pkginclude_HEADERS)
AM_CXXFLAGS = -Wall -pedantic -O2 -g -DBOOST_TEST_DYN_LINK -L/usr/lib/boost
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.cc
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.cc
test_Car_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
$(top_srcdir)/media/libvamos-media.la \
$(top_srcdir)/body/libvamos-body.la \
-lboost_unit_test_framework
test_Frame_SOURCES = test_Frame.cc
test_Frame_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
Frame.lo \
-lboost_unit_test_framework
test_Particle_SOURCES = test_Particle.cc
test_Particle_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
Frame.lo \
Particle.lo \
-lboost_unit_test_framework
test_Rigid_Body_SOURCES = test_Rigid_Body.cc
test_Rigid_Body_LDADD = \
$(top_srcdir)/geometry/libvamos-geometry.la \
$(top_srcdir)/media/libvamos-media.la \
$(top_srcdir)/body/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