bin/b

10 lines
148 B
Plaintext
Raw Permalink Normal View History

2021-04-22 14:25:48 +00:00
#!/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