mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-23 06:51:06 +02:00
move source file to src/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3991 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
151a03113e
commit
91c63e9822
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME := mtd
|
PKG_NAME:=mtd
|
||||||
PKG_RELEASE := 4
|
PKG_RELEASE:=4
|
||||||
|
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
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.
|
from other firmware or older OpenWrt releases.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/Prepare
|
||||||
|
mkdir -p $(PKG_BUILD_DIR)
|
||||||
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
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
|
endef
|
||||||
|
|
||||||
define Package/mtd/install
|
define Package/mtd/install
|
||||||
install -d -m0755 $(1)/sbin
|
install -d -m0755 $(1)/sbin
|
||||||
install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin
|
install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,mtd))
|
$(eval $(call BuildPackage,mtd))
|
||||||
|
12
package/mtd/src/Makefile
Normal file
12
package/mtd/src/Makefile
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user