diff options
author | Andrei Neculau <[email protected]> | 2014-07-22 14:33:18 +0200 |
---|---|---|
committer | Andrei Neculau <[email protected]> | 2014-07-22 14:33:18 +0200 |
commit | 8d3313b8b36728c159a577f17349d63aaa6badd3 (patch) | |
tree | abeabad2362acd85118db92a5c3d840214deeac4 /core | |
parent | f2e7ca3b3d9562b186fb276c72ee7f45a8304c32 (diff) | |
download | erlang.mk-8d3313b8b36728c159a577f17349d63aaa6badd3.tar.gz erlang.mk-8d3313b8b36728c159a577f17349d63aaa6badd3.tar.bz2 erlang.mk-8d3313b8b36728c159a577f17349d63aaa6badd3.zip |
Improve detection of dependency support for make
Diffstat (limited to 'core')
-rw-r--r-- | core/deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk index 27eefe5..bda6bed 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -31,7 +31,7 @@ PKG_FILE_URL ?= https://raw.githubusercontent.com/extend/erlang.mk/master/packag deps:: $(ALL_DEPS_DIRS) @for dep in $(ALL_DEPS_DIRS) ; do \ - if [ -f $$dep/Makefile ] ; then \ + if [ -f $$dep/GNUmakefile ] || [ -f $$dep/makefile ] || [ -f $$dep/Makefile ] ; then \ $(MAKE) -C $$dep ; \ else \ echo "include $(CURDIR)/erlang.mk" | $(MAKE) -f - -C $$dep ; \ |