diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-10-04 02:10:28 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-10-04 02:11:11 -0700 |
commit | 7264545dc13abc231f1f5b386619990caec195b4 (patch) | |
tree | b4b4a9609851ddf690c20b9341ddaa77b5b10c28 | |
parent | 340bad4b919afbeed75da577a18e4e9d760b54c0 (diff) | |
download | mc-7264545dc13abc231f1f5b386619990caec195b4.tar.gz |
Delete leftover junk from importing libraries.
-rwxr-xr-x | lib/bio/configure | 52 | ||||
-rwxr-xr-x | lib/regex/configure | 52 |
2 files changed, 0 insertions, 104 deletions
diff --git a/lib/bio/configure b/lib/bio/configure deleted file mode 100755 index 37fe623..0000000 --- a/lib/bio/configure +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -prefix="/usr/local" - -for i in `seq 300`; do - echo "Lots of output to emulate automake... ok" - echo "Testing for things you'll never use... fail" - echo "Satisfying the fortran77 lobby... ok" - echo "Burning CPU time checking for the bloody obvious... ok" -done -echo "Automake emulated successfully" - -INST_ROOT='/usr/local' - -for arg in $*; do - shift 1 - case $arg in - "--prefix" | "-p") - prefix=shift $* - ;; - --prefix=*) - prefix=`echo $arg | sed 's/^--prefix=//g'` - ;; - "--help" | "-h") - echo "Usage:" - echo " --prefix | -p: The prefix to install to" - break; - ;; - *) echo "Unrecognized argument $arg";; - esac -done - -OS=`uname` - -echo export INST_ROOT=$prefix > config.mk -case $OS in - *Linux*) - echo 'export SYS=linux' >> config.mk - ;; - *Darwin*) - echo 'export SYS=osx' >> config.mk - ;; - *) - echo 'Unknown architecture.' - ;; -esac - -cat << EOF - Building with: - prefix=$prefix -EOF - diff --git a/lib/regex/configure b/lib/regex/configure deleted file mode 100755 index 37fe623..0000000 --- a/lib/regex/configure +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -prefix="/usr/local" - -for i in `seq 300`; do - echo "Lots of output to emulate automake... ok" - echo "Testing for things you'll never use... fail" - echo "Satisfying the fortran77 lobby... ok" - echo "Burning CPU time checking for the bloody obvious... ok" -done -echo "Automake emulated successfully" - -INST_ROOT='/usr/local' - -for arg in $*; do - shift 1 - case $arg in - "--prefix" | "-p") - prefix=shift $* - ;; - --prefix=*) - prefix=`echo $arg | sed 's/^--prefix=//g'` - ;; - "--help" | "-h") - echo "Usage:" - echo " --prefix | -p: The prefix to install to" - break; - ;; - *) echo "Unrecognized argument $arg";; - esac -done - -OS=`uname` - -echo export INST_ROOT=$prefix > config.mk -case $OS in - *Linux*) - echo 'export SYS=linux' >> config.mk - ;; - *Darwin*) - echo 'export SYS=osx' >> config.mk - ;; - *) - echo 'Unknown architecture.' - ;; -esac - -cat << EOF - Building with: - prefix=$prefix -EOF - |