| OLD | NEW |
| 1 ## | 1 ## |
| 2 ## Author: Lasse Collin | 2 ## Author: Lasse Collin |
| 3 ## | 3 ## |
| 4 ## This file has been put into the public domain. | 4 ## This file has been put into the public domain. |
| 5 ## You can do whatever you want with this file. | 5 ## You can do whatever you want with this file. |
| 6 ## | 6 ## |
| 7 | 7 |
| 8 SUBDIRS = api | 8 SUBDIRS = api |
| 9 | 9 |
| 10 EXTRA_DIST = | 10 EXTRA_DIST = |
| 11 CLEANFILES = | 11 CLEANFILES = |
| 12 doc_DATA = | 12 doc_DATA = |
| 13 | 13 |
| 14 lib_LTLIBRARIES = liblzma.la | 14 lib_LTLIBRARIES = liblzma.la |
| 15 liblzma_la_SOURCES = $(top_srcdir)/src/common/tuklib_physmem.c | 15 liblzma_la_SOURCES = $(top_srcdir)/src/common/tuklib_physmem.c |
| 16 liblzma_la_CPPFLAGS = \ | 16 liblzma_la_CPPFLAGS = \ |
| 17 -I$(top_srcdir)/src/liblzma/api \ | 17 -I$(top_srcdir)/src/liblzma/api \ |
| 18 -I$(top_srcdir)/src/liblzma/common \ | 18 -I$(top_srcdir)/src/liblzma/common \ |
| 19 -I$(top_srcdir)/src/liblzma/check \ | 19 -I$(top_srcdir)/src/liblzma/check \ |
| 20 -I$(top_srcdir)/src/liblzma/lz \ | 20 -I$(top_srcdir)/src/liblzma/lz \ |
| 21 -I$(top_srcdir)/src/liblzma/rangecoder \ | 21 -I$(top_srcdir)/src/liblzma/rangecoder \ |
| 22 -I$(top_srcdir)/src/liblzma/lzma \ | 22 -I$(top_srcdir)/src/liblzma/lzma \ |
| 23 -I$(top_srcdir)/src/liblzma/delta \ | 23 -I$(top_srcdir)/src/liblzma/delta \ |
| 24 -I$(top_srcdir)/src/liblzma/simple \ | 24 -I$(top_srcdir)/src/liblzma/simple \ |
| 25 -I$(top_srcdir)/src/common \ | 25 -I$(top_srcdir)/src/common \ |
| 26 -DTUKLIB_SYMBOL_PREFIX=lzma_ | 26 -DTUKLIB_SYMBOL_PREFIX=lzma_ |
| 27 liblzma_la_LDFLAGS = -no-undefined -version-info 5:4:0 | 27 liblzma_la_LDFLAGS = -no-undefined -version-info 5:5:0 |
| 28 | 28 |
| 29 include $(srcdir)/common/Makefile.inc | 29 include $(srcdir)/common/Makefile.inc |
| 30 include $(srcdir)/check/Makefile.inc | 30 include $(srcdir)/check/Makefile.inc |
| 31 | 31 |
| 32 if COND_FILTER_LZ | 32 if COND_FILTER_LZ |
| 33 include $(srcdir)/lz/Makefile.inc | 33 include $(srcdir)/lz/Makefile.inc |
| 34 endif | 34 endif |
| 35 | 35 |
| 36 if COND_FILTER_LZMA1 | 36 if COND_FILTER_LZMA1 |
| 37 include $(srcdir)/lzma/Makefile.inc | 37 include $(srcdir)/lzma/Makefile.inc |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 if COND_SHARED | 81 if COND_SHARED |
| 82 doc_DATA += liblzma.def | 82 doc_DATA += liblzma.def |
| 83 endif | 83 endif |
| 84 endif | 84 endif |
| 85 | 85 |
| 86 | 86 |
| 87 ## pkg-config | 87 ## pkg-config |
| 88 pkgconfigdir = $(libdir)/pkgconfig | 88 pkgconfigdir = $(libdir)/pkgconfig |
| 89 pkgconfig_DATA = liblzma.pc | 89 pkgconfig_DATA = liblzma.pc |
| 90 EXTRA_DIST += liblzma.pc.in | 90 EXTRA_DIST += liblzma.pc.in |
| OLD | NEW |