12 lines
195 B
Bash
Executable File
12 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
printf "Usage: setup.sh install_directory [dependencies].\n" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
cd $(dirname $0)
|
|
libname=$(basename $(pwd))
|
|
make DEST_DIR="$1" install
|