diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-17 10:43:00 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-17 10:43:00 +0200 |
commit | 489a3dbaa0465f04400804e956a1cfbbee3654a2 (patch) | |
tree | 9456c3fde0e0fdae8e006799338f41dd34508487 /dos/Makefile | |
parent | Make physmem.h work on old Windows versions. (diff) | |
download | xz-489a3dbaa0465f04400804e956a1cfbbee3654a2.tar.xz |
Added lzma_easy_buffer_encode(). Splitted easy.c into small
pieces to avoid unneeded dependencies making statically
linked applications bigger than needed.
Diffstat (limited to '')
-rw-r--r-- | dos/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dos/Makefile b/dos/Makefile index 9439295c..67437cd6 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -82,7 +82,11 @@ LIBLZMA_SRCS_C = \ ../src/liblzma/common/block_header_encoder.c \ ../src/liblzma/common/block_util.c \ ../src/liblzma/common/common.c \ - ../src/liblzma/common/easy.c \ + ../src/liblzma/common/easy_buffer_encoder.c \ + ../src/liblzma/common/easy_decoder_memusage.c \ + ../src/liblzma/common/easy_encoder.c \ + ../src/liblzma/common/easy_encoder_memusage.c \ + ../src/liblzma/common/easy_preset.c \ ../src/liblzma/common/filter_common.c \ ../src/liblzma/common/filter_decoder.c \ ../src/liblzma/common/filter_encoder.c \ |