mirror of
				https://git.tukaani.org/xz.git
				synced 2025-11-03 23:12:57 +00:00 
			
		
		
		
	This supports up to Landlock ABI version 6. The current code in xz and xzdec only support up to ABI version 4.
		
			
				
	
	
		
			46 lines
		
	
	
		
			983 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			983 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
## SPDX-License-Identifier: 0BSD
 | 
						|
## Author: Lasse Collin
 | 
						|
 | 
						|
SUBDIRS = liblzma xzdec
 | 
						|
 | 
						|
if COND_XZ
 | 
						|
SUBDIRS += xz
 | 
						|
endif
 | 
						|
 | 
						|
if COND_LZMAINFO
 | 
						|
SUBDIRS += lzmainfo
 | 
						|
endif
 | 
						|
 | 
						|
if COND_SCRIPTS
 | 
						|
SUBDIRS += scripts
 | 
						|
endif
 | 
						|
 | 
						|
EXTRA_DIST = \
 | 
						|
	common/common_w32res.rc \
 | 
						|
	common/my_landlock.h \
 | 
						|
	common/mythread.h \
 | 
						|
	common/sysdefs.h \
 | 
						|
	common/tuklib_common.h \
 | 
						|
	common/tuklib_config.h \
 | 
						|
	common/tuklib_cpucores.c \
 | 
						|
	common/tuklib_cpucores.h \
 | 
						|
	common/tuklib_exit.c \
 | 
						|
	common/tuklib_exit.h \
 | 
						|
	common/tuklib_gettext.h \
 | 
						|
	common/tuklib_integer.h \
 | 
						|
	common/tuklib_mbstr.h \
 | 
						|
	common/tuklib_mbstr_fw.c \
 | 
						|
	common/tuklib_mbstr_nonprint.c \
 | 
						|
	common/tuklib_mbstr_nonprint.h \
 | 
						|
	common/tuklib_mbstr_width.c \
 | 
						|
	common/tuklib_mbstr_wrap.c \
 | 
						|
	common/tuklib_mbstr_wrap.h \
 | 
						|
	common/tuklib_open_stdxxx.c \
 | 
						|
	common/tuklib_open_stdxxx.h \
 | 
						|
	common/tuklib_physmem.c \
 | 
						|
	common/tuklib_physmem.h \
 | 
						|
	common/tuklib_progname.c \
 | 
						|
	common/tuklib_progname.h \
 | 
						|
	common/w32_application.manifest \
 | 
						|
	common/w32_application.manifest.comments.txt
 |