Remove permanent build directory

This commit is contained in:
2017-12-23 23:38:21 -06:00
parent ebdd31315d
commit 7e1866ade9
6 changed files with 21 additions and 73 deletions

14
scripts/run-make Executable file
View 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