diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 03:13:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-11 03:13:35 +0000 |
commit | 55bc42afdadc9990ee44e08d26ea6a6077e45adf (patch) | |
tree | 7b3e210aaf36291705174e37acad6fb60ac699dc /openwrt/target/linux/Makefile | |
parent | 2290b5a9cfa4fc2882ad593efcb0f8d008dc730e (diff) |
fix non-verbose messages for the new target/linux structure
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2901 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/Makefile')
-rw-r--r-- | openwrt/target/linux/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openwrt/target/linux/Makefile b/openwrt/target/linux/Makefile index 038983f3aa..fbc4e050dd 100644 --- a/openwrt/target/linux/Makefile +++ b/openwrt/target/linux/Makefile @@ -9,23 +9,23 @@ IB_DIR:=$(BUILD_DIR)/$(IB_NAME) define kernel_template $(1)/$(2)-clean: - @$(TRACE) target/linux/linux-$(1)/clean + @$(TRACE) target/linux/$(2)-$(1)/clean $(MAKE) -C $(2)-$(1) BOARD="$(2)" clean $(1)/$(2)-prepare: - @$(TRACE) target/linux/linux-$(1)/prepare + @$(TRACE) target/linux/$(2)-$(1)/prepare $(MAKE) -C $(2)-$(1) BOARD="$(2)" prepare $(1)/$(2)-compile: - @$(TRACE) target/linux/linux-$(1)/compile + @$(TRACE) target/linux/$(2)-$(1)/compile $(MAKE) -C $(2)-$(1) BOARD="$(2)" compile $(1)/$(2)-rebuild: - @$(TRACE) target/linux/linux-$(1)/rebuild + @$(TRACE) target/linux/$(2)-$(1)/rebuild $(MAKE) -C $(2)-$(1) BOARD="$(2)" rebuild $(1)/$(2)-install: - @$(TRACE) target/linux/linux-$(1)/install + @$(TRACE) target/linux/$(2)-$(1)/install $(MAKE) -C $(2)-$(1) BOARD="$(2)" install $(1)/$(2)-image: $(1)/$(2)-install |