summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/simple
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-21 18:19:09 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-23 14:34:55 (GMT)
commitd44ad1612bfe01891bb16b4289f5fa5a2e29a546 (patch)
tree569ae4e2a90fffffc9d885e26774921cf856bdfd /Utilities/cmliblzma/liblzma/simple
parenta53caea3b6609f94063dfc21cbdf5361e9145040 (diff)
downloadCMake-d44ad1612bfe01891bb16b4289f5fa5a2e29a546.zip
CMake-d44ad1612bfe01891bb16b4289f5fa5a2e29a546.tar.gz
CMake-d44ad1612bfe01891bb16b4289f5fa5a2e29a546.tar.bz2
liblzma: Remove unused Makefile.* files
We will provide our own CMake-based build system.
Diffstat (limited to 'Utilities/cmliblzma/liblzma/simple')
-rw-r--r--Utilities/cmliblzma/liblzma/simple/Makefile.inc47
1 files changed, 0 insertions, 47 deletions
diff --git a/Utilities/cmliblzma/liblzma/simple/Makefile.inc b/Utilities/cmliblzma/liblzma/simple/Makefile.inc
deleted file mode 100644
index 8a5e2d7..0000000
--- a/Utilities/cmliblzma/liblzma/simple/Makefile.inc
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-## Author: Lasse Collin
-##
-## This file has been put into the public domain.
-## You can do whatever you want with this file.
-##
-
-liblzma_la_SOURCES += \
- simple/simple_coder.c \
- simple/simple_coder.h \
- simple/simple_private.h
-
-if COND_ENCODER_SIMPLE
-liblzma_la_SOURCES += \
- simple/simple_encoder.c \
- simple/simple_encoder.h
-endif
-
-if COND_DECODER_SIMPLE
-liblzma_la_SOURCES += \
- simple/simple_decoder.c \
- simple/simple_decoder.h
-endif
-
-if COND_FILTER_X86
-liblzma_la_SOURCES += simple/x86.c
-endif
-
-if COND_FILTER_POWERPC
-liblzma_la_SOURCES += simple/powerpc.c
-endif
-
-if COND_FILTER_IA64
-liblzma_la_SOURCES += simple/ia64.c
-endif
-
-if COND_FILTER_ARM
-liblzma_la_SOURCES += simple/arm.c
-endif
-
-if COND_FILTER_ARMTHUMB
-liblzma_la_SOURCES += simple/armthumb.c
-endif
-
-if COND_FILTER_SPARC
-liblzma_la_SOURCES += simple/sparc.c
-endif