diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 00:06:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 00:06:20 +0000 |
commit | 6d59cdfc48ad29af5e424155d3e42995f63327a3 (patch) | |
tree | a92ac9dac91681e2551a6aab8ad6fa24b9d91611 /target/linux/package | |
parent | 0384bd07ecaaebf4f5c7420fffe245e091e2802a (diff) | |
download | master-187ad058-6d59cdfc48ad29af5e424155d3e42995f63327a3.tar.gz master-187ad058-6d59cdfc48ad29af5e424155d3e42995f63327a3.tar.bz2 master-187ad058-6d59cdfc48ad29af5e424155d3e42995f63327a3.zip |
large build system cleanup. added some stuff to control the verbosity level, but not complete, yet.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2221 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package')
-rw-r--r-- | target/linux/package/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/package/Makefile b/target/linux/package/Makefile index 7e8588d99a..6b7a85816c 100644 --- a/target/linux/package/Makefile +++ b/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 |