~sfiorucci/ptools/test_seb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: ptools python

# generates the C++ static library
ptools:
	scons -j2 cpp

# generates the C++ shared library (but NOT the bindings files - see below )
python: bindings
	scons -j2 python

# generates python bindings files
# Py++ pygccxml and gccxml required
bindings:
	python interface.py

clean:
	scons -c