blob: d8a597a26075ea0c9f9243834865c1c71a6db59d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
##
## Author: Lasse Collin
##
## This file has been put into the public domain.
## You can do whatever you want with this file.
##
EXTRA_DIST += rangecoder/price_tablegen.c
liblzma_la_SOURCES += rangecoder/range_common.h
if COND_ENCODER_LZMA1
liblzma_la_SOURCES += \
rangecoder/range_encoder.h \
rangecoder/price.h \
rangecoder/price_table.c
endif
if COND_DECODER_LZMA1
liblzma_la_SOURCES += rangecoder/range_decoder.h
endif
|