annotate make-pc.sh @ 620:70fc1a504138

Okay, I think my python bindings have reached the border of useful, so in the svn they go. The bindings currently allow for adb create and open, status and the setting of the l2norm and power flags. Note that these are the direct c bindings, when it's done there will be OO dressing on top for standard entry. Also, even though I don't use numpy yet, the include file is brought in, so the module won't build if you don't have numpy in an importable place.
author map01bf
date Tue, 15 Sep 2009 17:40:02 +0000
parents 957dd4fb2599
children
rev   line source
mas01cr@611 1 #! /bin/bash
mas01cr@611 2
mas01cr@611 3 EXECUTABLE="$1"
mas01cr@611 4 LIBDIR="$2"
mas01cr@611 5 INCLUDEDIR="$3"
mas01cr@611 6 SOVERSION=$4
mas01cr@611 7 MINORVERSION=$5
mas01cr@611 8
mas01cr@611 9 echo "includedir=$INCLUDEDIR"
mas01cr@611 10 echo "libdir=$LIBDIR"
mas01cr@611 11 echo
mas01cr@611 12 echo "Name: $EXECUTABLE"
mas01cr@611 13 echo "Description: the $EXECUTABLE library"
mas01cr@611 14 echo "Version: $SOVERSION.$MINORVERSION"
mas01cr@611 15 echo "Requires.private: gsl gsoap++"
mas01cr@611 16 echo 'Cflags: -I${includedir}'
mas01cr@611 17 echo 'Libs: -L${libdir} -l'"$EXECUTABLE"