X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=rules.mk;h=e363517b1cc2cfabea109c0bef31ab020480138a;hp=42e997859173c1d3c826d05c169755b0fed69ce9;hb=09bef4cd603cd1ee682a431fef01f45644ef5676;hpb=5b651a67219a836845753cf1e463c3241b24b17e diff --git a/rules.mk b/rules.mk index 42e9978591..e363517b1c 100644 --- a/rules.mk +++ b/rules.mk @@ -87,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 @@ -129,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: ;