X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f77b88d124ea1c900f9cf5e04046939aad48bbe1..87b849886f5cc4a0d7ae855238e49eb8ec1cdf6e:/package/openwrt/Makefile diff --git a/package/openwrt/Makefile b/package/openwrt/Makefile index 424ae4f9a..7e7b954e1 100644 --- a/package/openwrt/Makefile +++ b/package/openwrt/Makefile @@ -1,9 +1,54 @@ +# $Id$ + include $(TOPDIR)/rules.mk -include ./openwrt.mk +PKG_NAME := openwrt-utils +PKG_RELEASE := 1 +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +SHARED_INCLUDE:=${shell pwd}/include + +libshared-compile libnvram-compile: + @$(MAKE) -C $(patsubst %-compile,%,$@) compile + +libshared-install libnvram-install: libshared-compile libnvram-compile + @$(MAKE) -C $(patsubst %-install,%,$@) install + +libshared-clean libnvram-clean wlc-clean: + @$(MAKE) -C $(patsubst %-clean,%,$@) clean + +$(PKG_IPK_DIR)/sbin/mtd: mtd.c + mkdir -p $(PKG_IPK_DIR)/sbin + $(TARGET_CC) -o $@ $< + +$(PKG_IPK_DIR)/sbin/jffs2root: jffs2root.c + mkdir -p $(PKG_IPK_DIR)/sbin + $(TARGET_CC) -o $@ $< + +$(PKG_IPK_DIR)/usr/sbin/wlc: wlc.c libshared-install + mkdir -p $(PKG_IPK_DIR)/usr/sbin + $(TARGET_CC) -o $@ $< -lshared -L./libshared -I$(SHARED_INCLUDE) + +$(PKG_IPK): $(PKG_IPK_DIR)/sbin/mtd $(PKG_IPK_DIR)/sbin/jffs2root $(PKG_IPK_DIR)/usr/sbin/wlc + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_RELEASE) $(ARCH) + $(STRIP) $(PKG_IPK_DIR)/usr/sbin/* + $(STRIP) $(PKG_IPK_DIR)/sbin/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $< + +source: +prepare: +compile: prepare libnvram-compile libshared-compile $(PKG_IPK) $(PKG_WLCOMPAT) + mkdir -p $(STAGING_DIR)/usr/include + cp -a ./include/* $(STAGING_DIR)/usr/include/ +install: libnvram-install libshared-install \ + $(IPKG_STATE_DIR)/info/$(PKG_NAME).list \ -source: openwrt-source -prepare: $(LINKSYS_SHARED_DIR)/.source -compile: $(TARGET_DIR)/$(LINKSYS_SHARED_TARGET_BINARY) -install: compile openwrt -clean: openwrt-dirclean +clean: libshared-clean libnvram-clean + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK)