summaryrefslogtreecommitdiff
path: root/openwrt/target/linux/package/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-10-22 15:10:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-10-22 15:10:20 +0000
commitf7712db53cefa44a6efbf72328299e32e83be938 (patch)
tree0fb5f2cacfe88cf18cc3df0a5096b82355334791 /openwrt/target/linux/package/Makefile
parent58eebfa037d5b598048416e2ea2cab04fcfa60df (diff)
downloadmtk-20170518-f7712db53cefa44a6efbf72328299e32e83be938.zip
mtk-20170518-f7712db53cefa44a6efbf72328299e32e83be938.tar.gz
mtk-20170518-f7712db53cefa44a6efbf72328299e32e83be938.tar.bz2
make log output a bit nicer
SVN-Revision: 2241
Diffstat (limited to 'openwrt/target/linux/package/Makefile')
-rw-r--r--openwrt/target/linux/package/Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/openwrt/target/linux/package/Makefile b/openwrt/target/linux/package/Makefile
index dc031fc..c69705b 100644
--- a/openwrt/target/linux/package/Makefile
+++ b/openwrt/target/linux/package/Makefile
@@ -34,24 +34,32 @@ MAKEOPTS:= BOARD="$(BOARD)" \
%-prepare:
- @$(TRACE) target/linux/package/$(patsubst %-prepare,%,$@)-prepare
+ @$(START_TRACE) "target/linux/package/$(patsubst %-prepare,%,$@)/prepare: "
$(MAKE) -C $(patsubst %-prepare,%,$@) \
$(MAKEOPTS) \
prepare
+ @$(CMD_TRACE) " done"
+ @$(END_TRACE)
%-compile:
- @$(TRACE) target/linux/package/$(patsubst %-compile,%,$@)-compile
+ @$(START_TRACE) "target/linux/package/$(patsubst %-compile,%,$@)-compile: "
$(MAKE) -C $(patsubst %-compile,%,$@) \
$(MAKEOPTS) \
compile
+ @$(CMD_TRACE) " done"
+ @$(END_TRACE)
%-install: %-compile
- @$(TRACE) target/linux/package/$(patsubst %-install,%,$@)-install
+ @$(START_TRACE) "target/linux/package/$(patsubst %-install,%,$@)-install: "
$(MAKE) -C $(patsubst %-install,%,$@) \
$(MAKEOPTS) \
install
+ @$(CMD_TRACE) " done"
+ @$(END_TRACE)
%-clean:
- @$(TRACE) target/linux/package/$(patsubst %-clean,%,$@)-clean
+ @$(START_TRACE) "target/linux/package/$(patsubst %-clean,%,$@)-clean: "
@$(MAKE) -C $(patsubst %-clean,%,$@) clean
+ @$(CMD_TRACE) " done"
+ @$(END_TRACE)