diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-19 23:08:46 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-19 23:08:46 +0000 |
commit | c519093d573fe3f1143271ee3f98941f871891e9 (patch) | |
tree | 9ae14781fb927b1667ce710d4a2d51b7c0f6da44 | |
parent | e1053660804d608e084d912399ff38ffe1747c20 (diff) | |
download | mtk-20170518-c519093d573fe3f1143271ee3f98941f871891e9.zip mtk-20170518-c519093d573fe3f1143271ee3f98941f871891e9.tar.gz mtk-20170518-c519093d573fe3f1143271ee3f98941f871891e9.tar.bz2 |
Convert ttcp to new packaging style, add PKG_VERSION, use TARGET_CFLAGS
SVN-Revision: 982
-rw-r--r-- | openwrt/package/ttcp/Makefile | 35 | ||||
-rw-r--r-- | openwrt/package/ttcp/ipkg/ttcp.control (renamed from openwrt/package/ttcp/ttcp.control) | 0 |
2 files changed, 17 insertions, 18 deletions
diff --git a/openwrt/package/ttcp/Makefile b/openwrt/package/ttcp/Makefile index ec91ef7..080aa86 100644 --- a/openwrt/package/ttcp/Makefile +++ b/openwrt/package/ttcp/Makefile @@ -3,29 +3,28 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ttcp +PKG_VERSION:=3.8 PKG_RELEASE:=1 PKG_BUILD_DIR:=$(BUILD_DIR)/ttcp -PKG_IPK_DIR:=$(PKG_BUILD_DIR) -PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_RELEASE)_$(ARCH).ipk -$(PKG_BUILD_DIR)/usr/bin/ttcp: - mkdir -p $(PKG_BUILD_DIR)/usr/bin - $(TARGET_CC) -o $@ ttcp.c - $(STRIP) $@ +include $(TOPDIR)/package/rules.mk -$(PKG_IPK): $(PKG_BUILD_DIR)/usr/bin/ttcp - $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_RELEASE) $(ARCH) - $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) +$(eval $(call PKG_template,TTCP,ttcp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: - $(IPKG) install $(PKG_IPK) +$(PKG_BUILD_DIR)/.prepared: + mkdir -p $@ + touch $@ -source: -prepare: -compile: $(PKG_IPK) -install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list +$(PKG_BUILD_DIR)/.configured: + touch $@ -clean: - rm -rf $(PKG_BUILD_DIR) - rm -f $(PKG_IPK) +$(PKG_BUILD_DIR)/.built: + $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/ttcp ttcp.c + touch $@ + +$(IPKG_TTCP): + install -d -m0755 $(IDIR_TTCP)/usr/bin + install -m0755 $(PKG_BUILD_DIR)/ttcp $(IDIR_TTCP)/usr/bin/ + $(RSTRIP) $(IDIR_TTCP) + $(IPKG_BUILD) $(IDIR_TTCP) $(PACKAGE_DIR) diff --git a/openwrt/package/ttcp/ttcp.control b/openwrt/package/ttcp/ipkg/ttcp.control index 3633ef1..3633ef1 100644 --- a/openwrt/package/ttcp/ttcp.control +++ b/openwrt/package/ttcp/ipkg/ttcp.control |