12 lines
141 B
Bash
Executable file
12 lines
141 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if make -h > /dev/null; then
|
|
echo "[OK] Make installed..."
|
|
exit 0;
|
|
|
|
else
|
|
echo "[FAILED] Make is not installed..."
|
|
exit 1
|
|
|
|
fi
|
|
|