The code in the lisp files for today is pretty fast stuff, converted from the
original Fortran code of deBoor. Makes it easy to do things like compute the smoothing
matrix quickly. On the Sun, one builds a file like splsm.so using the commands
cc -c -xcg92 -xO3 splsm.c
ld -G -o splsm.so splsm.o
Watch out for doing too much optimization; code starts to break here easily.