Remove permanent build directory
This commit is contained in:
14
scripts/run-make
Executable file
14
scripts/run-make
Executable file
@ -0,0 +1,14 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
if [$(which gmake) != 'gmake not found']; then
|
||||
MAKE="gmake"
|
||||
else
|
||||
MAKE="make"
|
||||
fi
|
||||
|
||||
for f in $(find $1 -maxdepth 1 -mindepth 1 -type d)
|
||||
do
|
||||
$MAKE -s -j -C "$f" $2
|
||||
done
|
Reference in New Issue
Block a user