diff options
-rwxr-xr-x | rebuild.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,8 @@ -#!/bin/sh -vq +#!/bin/sh cd $(dirname $0) rm bin/* rm libexec/* +echo "building and installing tools from sources..." for i in src/*;do iout=$(basename $i) mkdir -p $iout @@ -11,6 +12,7 @@ for i in src/*;do done cp $iout/* /usr/local/$iout/ done +echo "building and installing tools without compiling..." for i in nocompile/*;do iout=$(basename $i) for j in nocompile/$i/* out=$(basename $i);do |