18ebc903354362fe0738f6edb8767fd2170b9fbb
[openwrt/openwrt.git] / openwrt / package / mtd / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME := mtd
6 PKG_RELEASE := 2
7
8 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
9
10 include $(TOPDIR)/package/rules.mk
11
12 $(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH)))
13 $(eval $(call PKG_template,MTD_STATIC,mtd-static,$(PKG_RELEASE),$(ARCH)))
14
15 $(PKG_BUILD_DIR)/.prepared:
16 mkdir -p $@
17 touch $@
18
19 $(PKG_BUILD_DIR)/.built:
20 $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c
21 $(TARGET_CC) -static $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd-static mtd.c
22 touch $@
23
24 $(IPKG_MTD):
25 install -d -m0755 $(IDIR_MTD)/sbin
26 install -m0755 $(PKG_BUILD_DIR)/mtd $(IDIR_MTD)/sbin
27 $(RSTRIP) $(IDIR_MTD)/sbin/*
28 $(IPKG_BUILD) $(IDIR_MTD) $(PACKAGE_DIR)
29
30 $(IPKG_MTD_STATIC):
31 install -d -m0755 $(IDIR_MTD_STATIC)/sbin
32 install -m0755 $(PKG_BUILD_DIR)/mtd-static $(IDIR_MTD_STATIC)/sbin
33 $(RSTRIP) $(IDIR_MTD_STATIC)/sbin/*
34 $(IPKG_BUILD) $(IDIR_MTD_STATIC) $(PACKAGE_DIR)