summaryrefslogtreecommitdiff
path: root/scripts/make
blob: e8e518653119ed9f54a2a1fa7590b7d963f9be24 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

if [ -z "$(which gmake 2>/dev/null)" ];then
	/usr/bin/make "$@"
else
	gmake "$@"
fi