X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/947ca6f4e8cf3e67ce50d0af0f669e1099d6ea8c..e5b08070f55ad1c31b58d0d82a29b0acdb84ef0a:/rules.mk

diff --git a/rules.mk b/rules.mk
index 4bc7dfab4..6fbf88f80 100644
--- a/rules.mk
+++ b/rules.mk
@@ -5,7 +5,9 @@
 # See /LICENSE for more information.
 #
 
--include $(TOPDIR)/.config
+ifeq ($(DUMP),)
+  -include $(TOPDIR)/.config
+endif
 include $(TOPDIR)/include/verbose.mk
 
 export SHELL=/usr/bin/env bash -c '. $(TOPDIR)/include/shell.sh; eval "$$2"' --
@@ -84,7 +86,8 @@ TARGET_CONFIGURE_OPTS:= \
   RANLIB=$(TARGET_CROSS)ranlib \
   STRIP=$(TARGET_CROSS)strip \
   OBJCOPY=$(TARGET_CROSS)objcopy \
-	OBJDUMP=$(TARGET_CROSS)objdump
+	OBJDUMP=$(TARGET_CROSS)objdump \
+	SIZE=$(TARGET_CROSS)size
 
 # strip an entire directory
 RSTRIP:= \
@@ -131,19 +134,6 @@ $(call shvar,$(1))=$$(call $(1))
 export $(call shvar,$(1))
 endef
 
-# Default targets for subdirectory calls
-# Parameters:
-# 	1: dependencies for the prepare step
-define default_subtargets
-  %-download %-prepare %-compile %-install %-clean: FORCE
-	$$(MAKE) -C $$* $$(patsubst $$*-%,%,$$@)
-
-  %-compile: %-prepare 
-  %-install: %-compile
-  .SILENT: %-clean
-endef
-
-
 all:
 FORCE: ;
 .PHONY: FORCE