diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-03 23:33:16 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-03 23:33:16 +0000 |
commit | 554d90816d588b3aeb3124cd06c46de6d198bdbd (patch) | |
tree | d51f40a09504d30623f0b44d5a5195576e807a12 /math/calc/scripts | |
parent | 44a991d03592514ee348f37569a6f223956b1fd0 (diff) | |
download | FreeBSD-ports-554d90816d588b3aeb3124cd06c46de6d198bdbd.zip FreeBSD-ports-554d90816d588b3aeb3124cd06c46de6d198bdbd.tar.gz |
calc - arbitrary precision calculator. Version 2.9.3t6
From Jean-Marc Zucconi.
Submitted by: jmz
Diffstat (limited to 'math/calc/scripts')
-rw-r--r-- | math/calc/scripts/configure | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/math/calc/scripts/configure b/math/calc/scripts/configure new file mode 100644 index 0000000..1beb703 --- /dev/null +++ b/math/calc/scripts/configure @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ $# != 3 ]; then exit 1; fi + +F=$3/Makefile + +chmod +w $F || exit 1; + +echo "BINDIR= /usr/local/bin" >> $F || exit 1; +echo "TOPDIR= /usr/local/lib" >> $F +echo "MANDIR=/usr/local/man/man1" >> $F +echo "CCOPT= -Wall -Wno-implicit -Wno-comment" >> $F
\ No newline at end of file |