diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-08 15:25:45 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-08 15:25:45 +0300 |
commit | b1c7368f95e93ccdefdd0748e04398c26766f47f (patch) | |
tree | fbba0f79912d7d009776a1b7e89b746677fbd8df /src/Makefile.am | |
parent | Windows: Make build.bash work without --enable-dynamic=no. (diff) | |
download | xz-b1c7368f95e93ccdefdd0748e04398c26766f47f.tar.xz |
Build: Add options to disable individual command line tools.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f03f5a3d..9fb4caad 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,5 +5,18 @@ ## You can do whatever you want with this file. ## -SUBDIRS = liblzma xz xzdec lzmainfo scripts +SUBDIRS = liblzma xzdec + +if COND_XZ +SUBDIRS += xz +endif + +if COND_LZMAINFO +SUBDIRS += lzmainfo +endif + +if COND_SCRIPTS +SUBDIRS += scripts +endif + EXTRA_DIST = common |