Changeset 5088

Show
Ignore:
Timestamp:
07/16/09 04:49:02 (4 years ago)
Author:
ignotus
Message:

Create clann library directory, create Matrix class dfile, and adapt Makefile.

Location:
branch/clann
Files:
3 added
2 modified

Legend:

Unmodified
Added
Removed
  • branch/clann/Makefile

    r5087 r5088  
    2929                ../code/clann.o \ 
    3030                ../code/reader.o 
    31         cd bind; python setup.py build 
     31        cd bind; python setup.py build_ext -f -b clann 
    3232 
    3333clean: 
    3434        cd code; rm *.o 
    35         cd bind; rm -rf build 
     35        cd bind; rm -rf clann/*.so 
  • branch/clann/bind/setup.py

    r5083 r5088  
    2525                          sources = ['matrix.c']) 
    2626 
    27 setup (name = 'CLANN', 
     27setup (name = 'clann', 
    2828       version = '0.1', 
     29       author='Joao Medeiros', 
     30       author_email='joaomedeiros@dca.ufrn.br', 
    2931       description = 'This is the CLANN package', 
    3032       ext_modules = [matrix_module])