summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2015-05-08 15:08:44 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2015-05-08 15:12:46 +0200
commit2bd6c423d7129aa945ccf2e0e6fa7194f6a9d60f (patch)
tree79b68a839c2d6a0abfe2aedf2157bc2277b52355
parent0c07b9bea41e7d49d0477b80d19f31ea9264ada6 (diff)
downloadefl-2bd6c423d7129aa945ccf2e0e6fa7194f6a9d60f.tar.gz
build: Pass on makeflags and use proper @$(MAKE)
Going with the build in automake stuff allows us to run this target also in parallel. Before we got the warning that the jobserver was missing and it would only run as -j1. Thanks to Tom for spotting and Flameeyes for the blog post: https://blog.flameeyes.eu/2010/10/tell-tale-signs-that-your-makefile-is-broken#gsc.tab=0
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7916cc1aa3..3969f99e9e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -132,7 +132,7 @@ DIST_SUBDIRS += $(EXAMPLES_SUBDIRS)
if EFL_ENABLE_TESTS
check-build:
- make $(check_PROGRAMS)
+ @$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
endif
examples: all-am