diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-17 16:13:32 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-17 16:13:32 +0100 |
commit | 23900d0b19e5c978934108f6a54aa82f6c7f27cb (patch) | |
tree | 33008c888e2205c32296272c5e766d292233a212 /src/Makefile.lsq_funcs | |
parent | 6ee81353d9dd4a9a97f8e91d6a619e59808f8106 (diff) |
use LSQ for all projection types
Diffstat (limited to 'src/Makefile.lsq_funcs')
-rw-r--r-- | src/Makefile.lsq_funcs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.lsq_funcs b/src/Makefile.lsq_funcs index f117e1e..8f92113 100644 --- a/src/Makefile.lsq_funcs +++ b/src/Makefile.lsq_funcs @@ -1,4 +1,7 @@ -all: lsq_funcs.c +all: ProjectionRectilinear_funcs.cxx ProjectionCylindrical_funcs.cxx -lsq_funcs.c: lsq_funcs.mac - maxima -b lsq_funcs.mac | grep "^static" > lsq_funcs.c +ProjectionRectilinear_funcs.cxx: lsq_rectilinear.mac + maxima -b lsq_rectilinear.mac | grep "^double" > ProjectionRectilinear_funcs.cxx + +ProjectionCylindrical_funcs.cxx: lsq_cylindrical.mac + maxima -b lsq_cylindrical.mac | grep "^double" > ProjectionCylindrical_funcs.cxx |