bin/b

10 lines
148 B
Bash
Executable File

#!/bin/sh
if [ -f ./build.sh ]; then
./build.sh
elif [ -f Makefile ]; then
make
else
echo "no makefile or build script in current directory"
fi