Mercurial > hg > audiodb
comparison bindings/python/Makefile @ 666:4dacfe92a6ff
More, better makefiles
Generalize the python makefile a little bit; now likely to work on multiple
Linux platforms. Also adjust it to bring it into line with the calling
convention of the top-level makefile, and include bindings/pd in BINDINGDIRS.
author | mas01cr |
---|---|
date | Wed, 03 Feb 2010 10:28:09 +0000 |
parents | e33a6342ddea |
children | c322a631ba23 |
comparison
equal
deleted
inserted
replaced
665:50761b56e8be | 666:4dacfe92a6ff |
---|---|
1 all: | 1 all: |
2 python setup.py build | 2 python setup.py build |
3 | 3 |
4 test: | 4 test: ../../libaudioDB.so.0.0 all |
5 env PYTHONPATH=./build/lib.linux-i686-2.5 \ | 5 (cd tests && \ |
6 LD_LIBRARY_PATH=../.. \ | 6 env PYTHONPATH=../build/lib.linux-`uname -m`-2.5 \ |
7 python tests/InitialisationRelated.py | 7 LD_LIBRARY_PATH=../../.. \ |
8 python InitialisationRelated.py) | |
9 | |
10 clean: | |
11 rm -rf tests/test* pyadb.pyc build |