X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=rules.mk;h=6fbf88f801f21113335ed2e733670d966479d447;hb=fa2a6d6883931ef2ea2e6785b5547f0655c72ec7;hp=e363517b1cc2cfabea109c0bef31ab020480138a;hpb=d415d5f3e6790f5c5ddb2183c2e705d0dcac44d4;p=openwrt.git diff --git a/rules.mk b/rules.mk index e363517b1c..6fbf88f801 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"' -- @@ -83,7 +85,9 @@ TARGET_CONFIGURE_OPTS:= \ CXX=$(TARGET_CROSS)g++ \ RANLIB=$(TARGET_CROSS)ranlib \ STRIP=$(TARGET_CROSS)strip \ - OBJCOPY=$(TARGET_CROSS)objcopy + OBJCOPY=$(TARGET_CROSS)objcopy \ + OBJDUMP=$(TARGET_CROSS)objdump \ + SIZE=$(TARGET_CROSS)size # strip an entire directory RSTRIP:= \ @@ -130,27 +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: FORCE - $$(MAKE) -C $$(patsubst %-download,%,$$@) download - - %-prepare: $(1) FORCE - $$(MAKE) -C $$(patsubst %-prepare,%,$$@) prepare - - %-compile: %-prepare - $$(MAKE) -C $$(patsubst %-compile,%,$$@) compile - - %-install: %-compile - $$(MAKE) -C $$(patsubst %-install,%,$$@) install - - %-clean: FORCE - @$$(MAKE) -C $$(patsubst %-clean,%,$$@) clean -endef - - all: FORCE: ; .PHONY: FORCE