diff options
Diffstat (limited to 'openwrt/target/linux/package/Makefile')
-rw-r--r-- | openwrt/target/linux/package/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/target/linux/package/Makefile b/openwrt/target/linux/package/Makefile index 7e8588d99..6b7a85816 100644 --- a/openwrt/target/linux/package/Makefile +++ b/openwrt/target/linux/package/Makefile @@ -34,20 +34,24 @@ MAKEOPTS:= BOARD="$(BOARD)" \ %-prepare: + @$(TRACE) target/linux/package/$(patsubst %-prepare,%,$@)-prepare $(MAKE) -C $(patsubst %-prepare,%,$@) \ $(MAKEOPTS) \ prepare %-compile: %-prepare + @$(TRACE) target/linux/package/$(patsubst %-compile,%,$@)-compile $(MAKE) -C $(patsubst %-compile,%,$@) \ $(MAKEOPTS) \ compile %-install: %-compile + @$(TRACE) target/linux/package/$(patsubst %-install,%,$@)-install $(MAKE) -C $(patsubst %-install,%,$@) \ $(MAKEOPTS) \ install %-clean: + @$(TRACE) target/linux/package/$(patsubst %-clean,%,$@)-clean @$(MAKE) -C $(patsubst %-clean,%,$@) clean |