diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:03:31 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:03:31 +0000 |
commit | 576b3463d3a5782484f2949f782e4214cdbb5a9b (patch) | |
tree | 86eff8b4e7b42b755cd6b57f7afccbc3438742d9 /package/mtd/Makefile | |
parent | bce3747358ff708c24261b7105b172f01bd45800 (diff) | |
download | upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.tar.gz upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.tar.bz2 upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.zip |
move source file to src/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3991 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mtd/Makefile')
-rw-r--r-- | package/mtd/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/package/mtd/Makefile b/package/mtd/Makefile index fdb43eee15..f6e94303af 100644 --- a/package/mtd/Makefile +++ b/package/mtd/Makefile @@ -2,8 +2,8 @@ include $(TOPDIR)/rules.mk -PKG_NAME := mtd -PKG_RELEASE := 4 +PKG_NAME:=mtd +PKG_RELEASE:=4 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) @@ -18,13 +18,20 @@ DESCRIPTION:=Update utility for trx firmware images. To update \\\ from other firmware or older OpenWrt releases. endef +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + define Build/Compile - $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ + all endef define Package/mtd/install install -d -m0755 $(1)/sbin - install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin + install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin/ endef $(eval $(call BuildPackage,mtd)) |