aboutsummaryrefslogtreecommitdiff
path: root/ubi-utils/Makefile
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-08-20 13:52:05 -0400
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-08-21 11:56:40 +0300
commit4d05d877670b40767292a63da1cb6632324e9cbb (patch)
tree0afdb98c174154575058c0d8c59352b94b431e5e /ubi-utils/Makefile
parentf760fe9709da5a0e48ec339b6c88ecbd3d305396 (diff)
use $(MAKE) rather than make
If you execute straight `make`, this prevents the active make env from being passed on to sub children. This prevents parallel building as well as build flag passing. I also dropped the recursive make in ubi-utils/Makefile for the all target as this causes problems when building in parallel. All of the targets that we actually care about are handled by the $(NTARGETS) target anyways. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/Makefile')
-rw-r--r--ubi-utils/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/ubi-utils/Makefile b/ubi-utils/Makefile
index bc27f7b..4cca316 100644
--- a/ubi-utils/Makefile
+++ b/ubi-utils/Makefile
@@ -30,7 +30,6 @@ vpath %.c ./src
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< -g -Wp,-MD,.$(shell basename $<).dep
all: $(TARGETS)
- $(MAKE) -C new-utils
IGNORE=${wildcard .*.c.dep}
-include ${IGNORE}