CXX=$(TARGET_CROSS)g++ \
RANLIB=$(TARGET_CROSS)ranlib \
STRIP=$(TARGET_CROSS)strip \
- OBJCOPY=$(TARGET_CROSS)objcopy
+ OBJCOPY=$(TARGET_CROSS)objcopy \
+ OBJDUMP=$(TARGET_CROSS)objdump
# strip an entire directory
RSTRIP:= \
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: ;