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