mirror of
				git://holbrook.no/eth-monitor.git
				synced 2025-11-04 11:28:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			306 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			306 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PREFIX ?= /usr/local
 | 
						|
BUILD_DIR = build/$(PREFIX)/share/man
 | 
						|
 | 
						|
man:
 | 
						|
	mkdir -vp $(BUILD_DIR)
 | 
						|
	chainlib-man.py -b 0xbf -v -n eth-monitor -d $(BUILD_DIR)/ man
 | 
						|
	chainlib-man.py -b 0xbf -v -n eth-monitor-list -d $(BUILD_DIR)/ man
 | 
						|
	chainlib-man.py -b 0xbf -v -n eth-monitor-import -d $(BUILD_DIR)/ man
 | 
						|
 | 
						|
.PHONY: man
 |