diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-07 02:16:43 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-07 02:16:43 +0200 |
commit | 52ee190f6bbbf0bf0c3d354f0370c409aed14506 (patch) | |
tree | 4cce29e6f802e8e1f2aa7b85746a979633a4c282 /tools/Makefile | |
parent | 1879491b2b6e799b20ac06d1b510726eb200944f (diff) |
more runtime fixes, update of some packages.
- update busybox, dnsmasq, ppp and libusb
- add timezone and hostname configuration for target via menu
- fix resolv.conf creation for dhcp client
- fix usb for alix boards
- enable lsusb and lspci by default
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/Makefile b/tools/Makefile index efb38843f..67b54b096 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -17,17 +17,17 @@ $(TOOLS_BUILD_DIR): mkdir -p $(TOOLS_BUILD_DIR) %-download: - $(TRACE) "tools/$(patsubst %-download,%,$@)-download: " + $(TRACE) "tools/$(patsubst %-download,%,$@)/download " $(MAKE) -C $(patsubst %-download,%,$@) fetch %-compile: $(TOOLS_BUILD_DIR) - $(TRACE) "tools/$(patsubst %-compile,%,$@)-compile: " + $(TRACE) "tools/$(patsubst %-compile,%,$@)/compile " $(MAKE) -C $(patsubst %-compile,%,$@) compile %-install: - $(TRACE) "tools/$(patsubst %-install,%,$@)-install: " + $(TRACE) "tools/$(patsubst %-install,%,$@)/install " $(MAKE) -C $(patsubst %-install,%,$@) install %-clean: - $(TRACE) "tools/$(patsubst %-clean,%,$@)-clean: " + $(TRACE) "tools/$(patsubst %-clean,%,$@)/clean " $(MAKE) -C $(patsubst %-clean,%,$@) clean |