-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
42 lines (38 loc) · 1.98 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
#AM_CPPFLAGS = -Ifitnessfunctions -Iexperiments -Isensors -Irenders -Irenders/drawstuff -Icollisions -Iobjects -Icontrollers -Iactuators -Iarenas -Ipopulations -I/usr/X11R6/include -I/usr/include/gsl
AM_CPPFLAGS = -Iexperiments -Isensors -Irenders -Irenders/drawstuff -Icollisions -Iobjects -Icontrollers -Iactuators -Iarenas -Ipopulations -I fitnessfunctions -I/usr/X11R6/include -I/usr/include/gsl
#SUBDIRS = collisions renders arenas fitnessfunctions sensors controllers \
# actuators populations experiments objects
#SUBDIRS = objects sensors controllers actuators arenas populations experiments collisions fitnessfunctions renders
SUBDIRS = objects sensors controllers actuators arenas experiments collisions renders populations fitnessfunctions
bin_PROGRAMS = irsim
irsim_SOURCES = experiment.cpp \
random.cpp \
main.cpp \
arena.cpp \
render.cpp \
simulator.cpp \
sensor.cpp \
actuator.cpp \
controller.cpp \
geometry.cpp \
epuck.cpp \
puck.cpp \
simmath.cpp \
arguments.cpp \
simobject.cpp \
general.cpp \
population.cpp \
individual.cpp \
fitnessfunction.cpp
irsim_LDADD = experiments/libexperiments.a \
objects/libobjects.a \
arenas/libarenas.a \
actuators/libactuators.a \
sensors/libsensors.a \
controllers/libcontrollers.a \
collisions/libcollisions.a \
renders/librenders.a \
renders/drawstuff/libdrawstuff.a \
populations/libpopulations.a \
fitnessfunctions/libfitnessfunctions.a \
-lpthread -lGL -lGLU -lX11 -lgsl -lgslcblas -L/usr/X11R6/lib