7 lines
90 B
Bash
Executable File
7 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$ROOT" ]; then
|
|
make install
|
|
else
|
|
cd $ROOT && make install
|
|
fi |