6 lines
82 B
Bash
6 lines
82 B
Bash
|
#!/bin/sh
|
||
|
prefix=${prefix:-/usr/local}
|
||
|
echo "BINDIR=$prefix/bin"
|
||
|
echo
|
||
|
echo "all:"
|