diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2012-10-30 14:02:45 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-11-12 18:35:52 +0100 |
commit | 2e200cde9a58a64f3df5f1c69dcdd57ef9452c3d (patch) | |
tree | 919607fc52473fbb54d587c2c4102f58328f13f2 /util/cbfstool/lzma/Makefile | |
parent | a5b70676385d6b5da3d18f81042de4a1bb4cf0da (diff) |
cbfstool: Update LZMA encoder to LZMA SDK 9.12
This removes almost all C++ code (except the wrapper)
Change-Id: I0f84070e3b6dc57c98d49a53150a140479b3221f
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/1799
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/cbfstool/lzma/Makefile')
-rw-r--r-- | util/cbfstool/lzma/Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/util/cbfstool/lzma/Makefile b/util/cbfstool/lzma/Makefile deleted file mode 100644 index 9ac4ca2ff6..0000000000 --- a/util/cbfstool/lzma/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -## -## This file is part of the coreboot project. -## -## Copyright (C) 2007 coresystems GmbH -## -## This program is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or -## (at your option) any later version. -## -## This program is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -## - -LZMA_OBJ := lzma/LZMAEncoder.o lzma/LZInWindow.o -LZMA_OBJ += lzma/RangeCoderBit.o lzma/StreamUtils.o -LZMA_OBJ += lzma/OutBuffer.o lzma/Alloc.o -LZMA_OBJ += lzma/CRC.o -LZMA_OBJ += lzma/lzma-compress.o - -$(tobj)/lzma/lzma-compress.o: $(tsrc)/lzma/minilzma.cc - $(CXX) $(CFLAGS) -o $@ -c -DCOMPACT $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/7zip/Compress/LZMA/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/7zip/Compress/LZ/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/7zip/Compress/RangeCoder/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/7zip/Decompress/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/7zip/Common/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/C/Common/%.cpp - $(CXX) $(CFLAGS) -o $@ -c $< - -$(tobj)/lzma/%.o: $(tsrc)/lzma/%.cc - $(CXX) $(CFLAGS) -o $@ -c $< - |