diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 18:42:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 18:42:17 +0100 |
commit | 65ba91df3f0ad65244e588d34d11d30d622bf4d0 (patch) | |
tree | 73083e41f58c19536c2001bc21ee3584cd2bbfdc /tools/lzma/Makefile | |
parent | abe3b8f248e747fa1267b2260f9605987aa0c41d (diff) | |
parent | 406ccf8df407e0292ee85d259a363c63e2be40a7 (diff) |
add x32 toolchain and kernel support
Diffstat (limited to 'tools/lzma/Makefile')
-rw-r--r-- | tools/lzma/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/lzma/Makefile b/tools/lzma/Makefile new file mode 100644 index 000000000..f012f3ddd --- /dev/null +++ b/tools/lzma/Makefile @@ -0,0 +1,30 @@ +# 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 + +include ../rules.mk + +install: ${STAGING_HOST_DIR}/usr/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}/usr/bin/lzma: $(WRKBUILD)/.compiled + $(INSTALL_BIN) $(WRKBUILD)/CPP/7zip/Compress/LZMA_Alone/lzma_alone \ + $(STAGING_HOST_DIR)/usr/bin/lzma + +include $(TOPDIR)/mk/tools.mk |