summaryrefslogtreecommitdiff
path: root/target/tools/lzma/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-01-09 19:07:06 +0100
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-01-09 19:07:06 +0100
commit3759be713eb1f3812412b7c9eff3767944786a7d (patch)
tree932fcc22559b0d874fa293b4d9c3b5f3ee0af995 /target/tools/lzma/Makefile
parentc83c6ef149028b71e580a536289704d0ba811802 (diff)
update to 3.1.8, add lzma-loader for brcm47xx, kernel stuff + patches does not work on Asus WL500gp
Diffstat (limited to 'target/tools/lzma/Makefile')
-rw-r--r--target/tools/lzma/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/target/tools/lzma/Makefile b/target/tools/lzma/Makefile
new file mode 100644
index 000000000..23cbc7f73
--- /dev/null
+++ b/target/tools/lzma/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= lzma
+PKG_VERSION:= 4.65
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 434e51a018b4c8ef377bf81520a53af0
+PKG_SITES:= http://downloads.openwrt.org/sources/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+#WRKDIST= ${WRKDIR}/$(PKG_NAME)${PKG_VERSION}
+
+include ../rules.mk
+
+all: ${STAGING_HOST_DIR}/bin/lzma
+
+UTIL_DIR=$(WRKBUILD)/C/LzmaUtil
+ALONE_DIR=$(WRKBUILD)/CPP/7zip/Compress/LZMA_Alone
+
+$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
+ $(MAKE) -C $(UTIL_DIR) -f makefile.gcc
+ $(MAKE) -C $(ALONE_DIR) -f makefile.gcc
+ touch $@
+
+${STAGING_HOST_DIR}/bin/lzma: $(WRKBUILD)/.compiled
+ $(INSTALL_BIN) $(WRKBUILD)/CPP/7zip/Compress/LZMA_Alone/lzma_alone \
+ $(STAGING_DIR)/bin/lzma
+
+include $(TOPDIR)/mk/tools.mk