mirror of
				https://git.tukaani.org/xz.git
				synced 2025-11-04 07:22:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			283 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			283 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: 0BSD
 | 
						|
# Author: Lasse Collin
 | 
						|
 | 
						|
CC = c99
 | 
						|
CFLAGS = -g
 | 
						|
LDFLAGS = -llzma
 | 
						|
 | 
						|
PROGS = \
 | 
						|
	01_compress_easy \
 | 
						|
	02_decompress \
 | 
						|
	03_compress_custom \
 | 
						|
	04_compress_easy_mt \
 | 
						|
	11_file_info
 | 
						|
 | 
						|
all: $(PROGS)
 | 
						|
 | 
						|
.c:
 | 
						|
	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
 | 
						|
 | 
						|
clean:
 | 
						|
	-rm -f $(PROGS)
 |