[go: up one dir, main page]

Menu

[485645]: / world / Makefile.am  Maximize  Restore  History

Download this file

50 lines (41 with data), 1.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
lib_LTLIBRARIES = libvamos-world.la
libvamos_world_la_SOURCES = \
Atmosphere.cc \
Controls.cc \
Gl_World.cc \
Interactive_Driver.cc \
Robot_Driver.cc \
Sounds.cc \
Timing_Info.cc \
World.cc
pkginclude_HEADERS = \
Atmosphere.h \
Controls.h \
Driver.h \
Gl_World.h \
Interactive_Driver.h \
Robot_Driver.h \
Sounds.h \
Timing_Info.h \
World.h
pkgincludedir = $(includedir)/@PACKAGE@/world
EXTRA_DIST = $(pkginclude_HEADERS)
AM_CXXFLAGS = -Wall -pedantic -O2 -g -DBOOST_TEST_DYN_LINK -L/usr/lib/boost `pkg-config sdl --cflags`
if DO_UNIT_TESTS
UNIT_TESTS = test_Controls test_Timing_Info
else
UNIT_TESTS =
endif
noinst_PROGRAMS = $(UNIT_TESTS)
EXTRA_PROGRAMS = $(UNIT_TESTS)
test_Controls_SOURCES = test_Controls.cc
test_Controls_LDADD = Controls.lo -lboost_unit_test_framework
test_Timing_Info_SOURCES = test_Timing_Info.cc
test_Timing_Info_LDADD = Timing_Info.lo -lboost_unit_test_framework
if DO_UNIT_TESTS
check-local: $(UNIT_TESTS)
for test in $(UNIT_TESTS); do \
echo $$test; \
$(top_srcdir)/world/$$test; \
done
endif