diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2014-01-29 20:19:41 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2014-01-29 20:19:41 +0200 |
commit | 5876ca27daa1429676b1160007d9688266907f00 (patch) | |
tree | 2a06ddbc68ef6775487ec619e7a38e8f713bc521 /doc/examples/Makefile | |
parent | liblzma: Fix lzma_mt.preset not working with lzma_stream_encoder_mt(). (diff) | |
download | xz-5876ca27daa1429676b1160007d9688266907f00.tar.xz |
Docs: Add example program for threaded encoding.
I didn't add -DLZMA_UNSTABLE to Makefile so one has to
specify it manually as long as LZMA_UNSTABLE is needed.
Diffstat (limited to '')
-rw-r--r-- | doc/examples/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 644dc32e..0f3d1851 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -12,7 +12,8 @@ LDFLAGS = -llzma PROGS = \ 01_compress_easy \ 02_decompress \ - 03_compress_custom + 03_compress_custom \ + 04_compress_easy_mt all: $(PROGS) |