summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-06 12:32:07 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-06 12:32:07 +0200
commitb7dcd20d9634e88483d4346493229dc969959389 (patch)
treeeeeffdf90b979465c523c119a5fe427b6fda2100 /Makefile
parent5e727af7c9b50781e13fe4ad99f7131309a00215 (diff)
downloadembtoolkit-b7dcd20d9634e88483d4346493229dc969959389.tar.gz
embtoolkit-b7dcd20d9634e88483d4346493229dc969959389.tar.bz2
embtoolkit-b7dcd20d9634e88483d4346493229dc969959389.tar.xz
Use make instead of MAKE in top level Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 0e8ef92..70c3e24 100644
--- a/Makefile
+++ b/Makefile
@@ -48,9 +48,9 @@ HOSTCXXFLAGS = -O2
export HOSTCC HOSTCXX HOSTCFLAGS HOSTCXXFLAGS
ifeq ($(Q),)
-Q:=
-else
Q:=@
+else
+Q:=
endif
export Q
@@ -72,30 +72,30 @@ All: $(EMBTK_BUILD)
xconfig: basic
ifeq ($(CONFIG_EMBTK_DOTCONFIG),y)
- $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig xconfig
+ $(Q)make -f scripts/Makefile.build obj=scripts/kconfig xconfig
else
@if [ -e $(EMBTK_ROOT)/.config.old ]; then \
cp $(EMBTK_ROOT)/.config.old $(EMBTK_ROOT)/.config; \
- $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig xconfig; \
+ make -f scripts/Makefile.build obj=scripts/kconfig xconfig; \
else \
- $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig xconfig; \
+ make -f scripts/Makefile.build obj=scripts/kconfig xconfig; \
fi
endif
menuconfig: basic
- $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/kconfig menuconfig
+ $(Q)make -f scripts/Makefile.build obj=scripts/kconfig menuconfig
basic:
- $(Q)$(MAKE) -f scripts/Makefile.build obj=scripts/basic
+ $(Q)make -f scripts/Makefile.build obj=scripts/basic
clean: rmallpath
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=scripts/kconfig
- $(Q)$(MAKE) -f scripts/Makefile.clean obj=scripts/basic
+ $(Q)make -f scripts/Makefile.clean obj=scripts/kconfig
+ $(Q)make -f scripts/Makefile.clean obj=scripts/basic
$(Q)rm -rf .config kbuild.log .fakeroot*
startbuild:
$(call EMBTK_GENERIC_MESSAGE,"Starting build of selected features ...")
- @$(MAKE) buildtoolchain host_packages_build symlink_tools \
+ $(Q)make buildtoolchain host_packages_build symlink_tools \
rootfs_build successful_build
include mk/macros.mk
@@ -122,8 +122,8 @@ else ifeq ($(CONFIG_EMBTK_ROOTFS_HAVE_BB),)
@echo
@echo
else
- $(MAKE) mkinitialpath
- $(MAKE) download_busybox $(BB_BUILD_DIR)/.decompressed \
+ $(Q)make mkinitialpath
+ $(Q)make download_busybox $(BB_BUILD_DIR)/.decompressed \
$(BB_BUILD_DIR)/.Config.in.renewed
KCONFIG_CONFIG=$(BB_BUILD_DIR)/.config \
scripts/kconfig/qconf $(BB_BUILD_DIR)/Config.in.new