summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-06-18 18:03:31 +0000
committerNicolas Thill <nico@openwrt.org>2006-06-18 18:03:31 +0000
commita48288c6a4961f4ed1327b47d730c858fb5d6838 (patch)
treec1f170a09b4d54a1440d254a50562ff9e11b73b5
parenteabd154f5157561c6a636c28fb991a3a4ce55cf0 (diff)
downloadmtk-20170518-a48288c6a4961f4ed1327b47d730c858fb5d6838.zip
mtk-20170518-a48288c6a4961f4ed1327b47d730c858fb5d6838.tar.gz
mtk-20170518-a48288c6a4961f4ed1327b47d730c858fb5d6838.tar.bz2
move source file to src/.
SVN-Revision: 3991
-rw-r--r--openwrt/package/mtd/Makefile15
-rw-r--r--openwrt/package/mtd/src/Makefile12
-rw-r--r--openwrt/package/mtd/src/mtd.c (renamed from openwrt/package/mtd/mtd.c)0
3 files changed, 23 insertions, 4 deletions
diff --git a/openwrt/package/mtd/Makefile b/openwrt/package/mtd/Makefile
index fdb43ee..f6e9430 100644
--- a/openwrt/package/mtd/Makefile
+++ b/openwrt/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))
diff --git a/openwrt/package/mtd/src/Makefile b/openwrt/package/mtd/src/Makefile
new file mode 100644
index 0000000..b9f256a
--- /dev/null
+++ b/openwrt/package/mtd/src/Makefile
@@ -0,0 +1,12 @@
+# $Id$
+
+all: mtd
+
+%.o: %.c
+ $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
+
+mtd: mtd.o
+ $(CC) -o $@ $^
+
+clean:
+ rm -f *.o mtd
diff --git a/openwrt/package/mtd/mtd.c b/openwrt/package/mtd/src/mtd.c
index 23e9916..23e9916 100644
--- a/openwrt/package/mtd/mtd.c
+++ b/openwrt/package/mtd/src/mtd.c