diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/upx/.svn | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/upx/.svn')
-rw-r--r-- | tools/upx/.svn/entries | 65 | ||||
-rw-r--r-- | tools/upx/.svn/text-base/Makefile.svn-base | 35 |
2 files changed, 100 insertions, 0 deletions
diff --git a/tools/upx/.svn/entries b/tools/upx/.svn/entries new file mode 100644 index 0000000..5519f6a --- /dev/null +++ b/tools/upx/.svn/entries @@ -0,0 +1,65 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/upx +svn://svn.openwrt.org/openwrt + + + +2012-08-12T12:34:30.330423Z +33140 +jow + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +patches +dir + +Makefile +file + + + + +2013-03-17T12:13:22.000000Z +e402b8be34490cadbffa316b5be049cf +2012-08-12T12:34:30.330423Z +33140 +jow + + + + + + + + + + + + + + + + + + + + + +847 + diff --git a/tools/upx/.svn/text-base/Makefile.svn-base b/tools/upx/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..3e76232 --- /dev/null +++ b/tools/upx/.svn/text-base/Makefile.svn-base @@ -0,0 +1,35 @@ +# +# Copyright (C) 2011-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=upx +PKG_VERSION:=3.07 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-src.tar.bz2 +PKG_SOURCE_URL:=@SF/upx +PKG_MD5SUM:=8186ab103288242f7e8ecad1acd4af03 +PKG_CAT:=bzcat + +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)-src + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Compile + rm -f $(HOST_BUILD_DIR)/src/.depend + $(MAKE) UPX_LZMADIR="$(BUILD_DIR_HOST)/lzma-4.65" -C $(HOST_BUILD_DIR)/src \ + CXXFLAGS_WERROR="" LDFLAGS="$(HOST_LDFLAGS) $(HOST_STATIC_LINKING)" +endef + +define Host/Install + $(CP) $(HOST_BUILD_DIR)/src/upx.out $(STAGING_DIR_HOST)/bin/upx +endef + +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/upx +endef + +$(eval $(call HostBuild)) |