X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=rules.mk;h=e363517b1cc2cfabea109c0bef31ab020480138a;hp=b63fcf31c8f5f7a6934473e64992f4188263599c;hb=8069e38587e32aaa069a0a9b06de3f72706f7e9b;hpb=063729570437fe82c326df2d1630be73828e0539 diff --git a/rules.mk b/rules.mk index b63fcf31c8..e363517b1c 100644 --- a/rules.mk +++ b/rules.mk @@ -87,8 +87,9 @@ TARGET_CONFIGURE_OPTS:= \ # strip an entire directory RSTRIP:= \ + NM="$(TARGET_CROSS)nm" \ STRIP="$(STRIP)" \ - STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment -w -K '__mod*'" \ + STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment" \ $(SCRIPT_DIR)/rstrip.sh # where to build (and put) .ipk packages @@ -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: ;