diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-21 20:07:46 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-21 20:07:46 +0100 |
commit | f270d9e315bd95e673b6b7c4c60d853c90f01f22 (patch) | |
tree | 515e1e7266da3d2f226cf1bd02f402ae9da8a53e /src/Makefile.lsq_funcs | |
parent | 19d955e58ec7ca58f9d2bf25b4233f4059dcbade (diff) |
use ssubst() from stringproc for variable translation
Diffstat (limited to 'src/Makefile.lsq_funcs')
-rw-r--r-- | src/Makefile.lsq_funcs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.lsq_funcs b/src/Makefile.lsq_funcs index c33fe5f..46bab6e 100644 --- a/src/Makefile.lsq_funcs +++ b/src/Makefile.lsq_funcs @@ -1,7 +1,7 @@ all: ProjectionRectilinear_funcs.cxx ProjectionCylindrical_funcs.cxx ProjectionRectilinear_funcs.cxx: lsq_rectilinear.mac expr2c.mac - maxima -b lsq_rectilinear.mac | grep "^double" | sed s/%/_/g > ProjectionRectilinear_funcs.cxx + maxima -b lsq_rectilinear.mac | grep "^double" > ProjectionRectilinear_funcs.cxx ProjectionCylindrical_funcs.cxx: lsq_cylindrical.mac expr2c.mac - maxima -b lsq_cylindrical.mac | grep "^double" | sed s/%/_/g > ProjectionCylindrical_funcs.cxx + maxima -b lsq_cylindrical.mac | grep "^double" > ProjectionCylindrical_funcs.cxx |