mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-03 21:22:47 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# run me to zopfli all the static files
 | 
						|
# which should help on really slow connections
 | 
						|
# but then why are you using copyparty in the first place
 | 
						|
 | 
						|
pk: $(addsuffix .gz, $(wildcard *.js *.css))
 | 
						|
un: $(addsuffix .un, $(wildcard *.gz))
 | 
						|
 | 
						|
%.gz: %
 | 
						|
	pigz -11 -J 34 -I 573 $<
 | 
						|
 | 
						|
%.un: %
 | 
						|
	pigz -d $<
 |