X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=rules.mk;h=e363517b1cc2cfabea109c0bef31ab020480138a;hp=0a958c2d58688f3894835cb4da95ff619ce51bf1;hb=a44c286fdb6478992a0d99cf886fbdb6a67ea301;hpb=3133fefe06562d0ce7984230425128634de27f2f diff --git a/rules.mk b/rules.mk index 0a958c2d58..e363517b1c 100644 --- a/rules.mk +++ b/rules.mk @@ -70,6 +70,7 @@ ifneq ($(CONFIG_CCACHE),) endif EXTRA_CPPFLAGS := -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include +EXTRA_CFLAGS := $(EXTRA_CPPFLAGS) EXTRA_LDFLAGS := -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib TARGET_CONFIGURE_OPTS:= \ @@ -86,6 +87,7 @@ TARGET_CONFIGURE_OPTS:= \ # strip an entire directory RSTRIP:= \ + NM="$(TARGET_CROSS)nm" \ STRIP="$(STRIP)" \ STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment" \ $(SCRIPT_DIR)/rstrip.sh @@ -128,6 +130,26 @@ $(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: ;