aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastian Siewior <bigeasy@linutronix.de>2008-08-20 21:50:18 +0200
committerDavid Woodhouse <David.Woodhouse@intel.com>2008-08-20 20:57:28 +0100
commit5b1cfb9d09a8a40577e79262c6d79dfcde36b1b7 (patch)
treee9fcec01567ec1151db3891db658717c8161ac18 /Makefile
parent0d02d2fe2432e640b3b6150f69ba5245c77e427f (diff)
mtd-utils: enable parallel build process
-j 2 build was not possible without this patch. Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2000b17..6ca6e0d 100644
--- a/Makefile
+++ b/Makefile
@@ -47,8 +47,8 @@ $(BUILDDIR)/%.o: %.c
.SUFFIXES:
all: $(TARGETS)
- make -C $(BUILDDIR)/ubi-utils
- make -C $(BUILDDIR)/mkfs.ubifs
+ $(MAKE) -C $(BUILDDIR)/ubi-utils
+ $(MAKE) -C $(BUILDDIR)/mkfs.ubifs
IGNORE=${wildcard $(BUILDDIR)/.*.c.dep}
-include ${IGNORE}