Rizin
unix-like reverse engineering framework and cli tools
Makefile.inc
Go to the documentation of this file.
1 ##
2 ## Author: Lasse Collin
3 ##
4 ## This file has been put into the public domain.
5 ## You can do whatever you want with this file.
6 ##
7 
8 liblzma_la_SOURCES += \
9  delta/delta_common.c \ delta/delta_common.h \ delta/delta_private.h
10 
11 if COND_ENCODER_DELTA
12 liblzma_la_SOURCES += \
13  delta/delta_encoder.c \ delta/delta_encoder.h
14 endif
15 
16 if COND_DECODER_DELTA
17 liblzma_la_SOURCES += \
18  delta/delta_decoder.c \ delta/delta_decoder.h
19 endif
20