move source file to src/.

SVN-Revision: 3991
master
Nicolas Thill 19 years ago
parent eabd154f51
commit a48288c6a4
  1. 15
      openwrt/package/mtd/Makefile
  2. 12
      openwrt/package/mtd/src/Makefile
  3. 0
      openwrt/package/mtd/src/mtd.c

@ -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))

@ -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…
Cancel
Save