summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/handle/make/file3
1 files changed, 2 insertions, 1 deletions
diff --git a/script/handle/make/file b/script/handle/make/file
index 698f4175..445016ea 100755
--- a/script/handle/make/file
+++ b/script/handle/make/file
@@ -44,7 +44,8 @@ handle_dependencies()
run_make_command()
{
- [ -f "${project}/Makefile" ] || return 0
+ [ -f "${project}/Makefile" ] || [ -f "${project}/makefile" ] || \
+ [ -f "${project}/GNUmakefile" ] || return 0
if [ -z "${mode}" ]; then
x_ make -C "${project}" -j$(nproc)
else