Changeset 2833 for trunk/Ohana/src/opihi
- Timestamp:
- Dec 27, 2004, 2:30:56 PM (22 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 12 edited
-
Makefile (modified) (1 diff)
-
cmd.astro/Makefile (modified) (1 diff)
-
cmd.basic/Makefile (modified) (1 diff)
-
cmd.data/Makefile (modified) (1 diff)
-
dimm/Makefile (modified) (1 diff)
-
dvo/Makefile (modified) (1 diff)
-
dvo2/Makefile (modified) (1 diff)
-
lib.data/Makefile (modified) (1 diff)
-
lib.shell/Makefile (modified) (1 diff)
-
lib.shell/stack_math.c (modified) (3 diffs)
-
mana/Makefile (modified) (1 diff)
-
pantasks/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/Makefile
r2774 r2833 33 33 34 34 $(PROGRAM) $(LIBS) $(EXTRAS): 35 if [ - e"$@" ]; then (cd $@ && make); fi35 if [ -d "$@" ]; then (cd $@ && make); fi 36 36 37 37 %.install: 38 if [ - e"$*" ]; then make $*; fi39 if [ - e"$*" ]; then (cd $* && make install); fi38 if [ -d "$*" ]; then make $*; fi 39 if [ -d "$*" ]; then (cd $* && make install); fi 40 40 41 41 %.clean: 42 if [ - e"$*" ]; then (cd $* && make clean); fi42 if [ -d "$*" ]; then (cd $* && make clean); fi 43 43 44 44 .PHONY: $(PROGRAM) $(LIBS) -
trunk/Ohana/src/opihi/cmd.astro/Makefile
r2598 r2833 76 76 rm -f $@ 77 77 ar rcv $@ $^ 78 ranlib$@78 $(RANLIB) $@ 79 79 @echo "compiled library $*" 80 80 @echo "" -
trunk/Ohana/src/opihi/cmd.basic/Makefile
r2598 r2833 76 76 rm -f $@ 77 77 ar rcv $@ $^ 78 ranlib$@78 $(RANLIB) $@ 79 79 @echo "compiled library $*" 80 80 @echo "" -
trunk/Ohana/src/opihi/cmd.data/Makefile
r2826 r2833 138 138 rm -f $@ 139 139 ar rcv $@ $^ 140 ranlib$@140 $(RANLIB) $@ 141 141 @echo "compiled library $*" 142 142 @echo "" -
trunk/Ohana/src/opihi/dimm/Makefile
r2799 r2833 85 85 rm -f $@ 86 86 ar rcv $@ $^ 87 ranlib$@87 $(RANLIB) $@ 88 88 @echo "compiled library $*" 89 89 @echo "" -
trunk/Ohana/src/opihi/dvo/Makefile
r2822 r2833 117 117 rm -f $@ 118 118 ar rcv $@ $^ 119 ranlib$@119 $(RANLIB) $@ 120 120 @echo "compiled library $*" 121 121 @echo "" -
trunk/Ohana/src/opihi/dvo2/Makefile
r2799 r2833 65 65 rm -f $@ 66 66 ar rcv $@ $^ 67 ranlib$@67 $(RANLIB) $@ 68 68 @echo "compiled library $*" 69 69 @echo "" -
trunk/Ohana/src/opihi/lib.data/Makefile
r2598 r2833 60 60 rm -f $@ 61 61 ar rcv $@ $^ 62 ranlib$@62 $(RANLIB) $@ 63 63 @echo "compiled library $*" 64 64 @echo "" -
trunk/Ohana/src/opihi/lib.shell/Makefile
r2598 r2833 85 85 rm -f $@ 86 86 ar rcv $@ $^ 87 ranlib$@87 $(RANLIB) $@ 88 88 @echo "compiled library $*" 89 89 @echo "" -
trunk/Ohana/src/opihi/lib.shell/stack_math.c
r2801 r2833 1114 1114 if (!strcmp (op, "sqrt")) { *out = sqrt (*M1); } 1115 1115 1116 if (!strcmp (op, "sinh")) { *out = sinh f(*M1); }1117 if (!strcmp (op, "cosh")) { *out = cosh f(*M1); }1118 if (!strcmp (op, "asinh")) { *out = asinh f(*M1); }1119 if (!strcmp (op, "acosh")) { *out = acosh f(*M1); }1116 if (!strcmp (op, "sinh")) { *out = sinh (*M1); } 1117 if (!strcmp (op, "cosh")) { *out = cosh (*M1); } 1118 if (!strcmp (op, "asinh")) { *out = asinh (*M1); } 1119 if (!strcmp (op, "acosh")) { *out = acosh (*M1); } 1120 1120 1121 1121 if (!strcmp (op, "sin")) { *out = sin (*M1); } … … 1170 1170 if (!strcmp (op, "sqrt")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = sqrt(*M1); }} 1171 1171 1172 if (!strcmp (op, "sinh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = sinh f(*M1); }}1173 if (!strcmp (op, "cosh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = cosh f(*M1); }}1174 if (!strcmp (op, "asinh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = asinh f(*M1); }}1175 if (!strcmp (op, "acosh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = acosh f(*M1); }}1172 if (!strcmp (op, "sinh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = sinh(*M1); }} 1173 if (!strcmp (op, "cosh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = cosh(*M1); }} 1174 if (!strcmp (op, "asinh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = asinh(*M1); }} 1175 if (!strcmp (op, "acosh")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = acosh(*M1); }} 1176 1176 1177 1177 if (!strcmp (op, "sin")) { for (i = 0; i < Nx; i++, out++, M1++) { *out = sin(*M1); }} … … 1235 1235 if (!strcmp (op, "sqrt")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sqrt(*M1); }} 1236 1236 1237 if (!strcmp (op, "sinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sinh f(*M1); }}1238 if (!strcmp (op, "cosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = cosh f(*M1); }}1239 if (!strcmp (op, "asinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = asinh f(*M1); }}1240 if (!strcmp (op, "acosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = acosh f(*M1); }}1237 if (!strcmp (op, "sinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sinh(*M1); }} 1238 if (!strcmp (op, "cosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = cosh(*M1); }} 1239 if (!strcmp (op, "asinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = asinh(*M1); }} 1240 if (!strcmp (op, "acosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = acosh(*M1); }} 1241 1241 1242 1242 if (!strcmp (op, "sin")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sin(*M1); }} -
trunk/Ohana/src/opihi/mana/Makefile
r2827 r2833 77 77 rm -f $@ 78 78 ar rcv $@ $^ 79 ranlib$@79 $(RANLIB) $@ 80 80 @echo "compiled library $*" 81 81 @echo "" -
trunk/Ohana/src/opihi/pantasks/Makefile
r2799 r2833 71 71 rm -f $@ 72 72 ar rcv $@ $^ 73 ranlib$@73 $(RANLIB) $@ 74 74 @echo "compiled library $*" 75 75 @echo ""
Note:
See TracChangeset
for help on using the changeset viewer.
