X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=target%2Futils%2FMakefile;h=fe354754ce68132c0e026c564786fa235beab926;hb=27828bb0a4d584e1869ce8aadbe62131479f7f97;hp=2a91cbbd59cdce231181184b8dd2193296862491;hpb=f77b88d124ea1c900f9cf5e04046939aad48bbe1;p=openwrt-10.03%2F.git diff --git a/target/utils/Makefile b/target/utils/Makefile index 2a91cbbd5..fe354754c 100644 --- a/target/utils/Makefile +++ b/target/utils/Makefile @@ -1,23 +1,20 @@ include $(TOPDIR)/rules.mk -TARGETS := addpattern trx -ifeq ($(BR2_TARGET_BELKIN),y) -TARGETS += belkin-bin -endif -ifeq ($(BR2_TARGET_MOTOROLA),y) -TARGETS += motorola-bin -endif +TARGETS := addpattern trx motorola-bin dgfirmware UTILS_BUILD_DIR:=$(BUILD_DIR)/target-utils prepare: $(UTILS_BUILD_DIR) -compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS)) -install: compile +compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS)) FORCE mkdir -p $(STAGING_DIR)/bin - cp -a $(UTILS_BUILD_DIR)/* $(STAGING_DIR)/bin/ + $(CP) $(UTILS_BUILD_DIR)/* $(STAGING_DIR)/bin/ +install: compile package: -clean: +clean: FORCE rm -rf $(UTILS_BUILD_DIR) + for f in $(TARGETS); do \ + rm -f $(STAGING_DIR)/bin/$$f ; \ + done $(UTILS_BUILD_DIR): mkdir -p $(UTILS_BUILD_DIR)