aboutsummaryrefslogtreecommitdiff
path: root/doc/examples/Makefile
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2014-01-29 20:19:41 +0200
committerLasse Collin <lasse.collin@tukaani.org>2014-01-29 20:19:41 +0200
commit5876ca27daa1429676b1160007d9688266907f00 (patch)
tree2a06ddbc68ef6775487ec619e7a38e8f713bc521 /doc/examples/Makefile
parentliblzma: Fix lzma_mt.preset not working with lzma_stream_encoder_mt(). (diff)
downloadxz-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/Makefile3
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)