mirror of
				https://github.com/ClusterCockpit/cc-metric-collector.git
				synced 2025-10-31 09:05:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			312 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			312 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| all: libganglia.so
 | |
| 
 | |
| libganglia.so:
 | |
| 	@find /usr ! -readable -prune -o -type d ! -executable -prune -o -name "$@*" -print0 | \
 | |
| 	    xargs --null --no-run-if-empty --replace \
 | |
| 	        ln --symbolic --verbose --force '{}' "$@"
 | |
| 	@if [[ ! -e "$@" ]]; then touch "$@"; fi
 | |
| 
 | |
| 
 | |
| clean:
 | |
| 	rm -f libganglia.so
 | |
| 
 | |
| .PHONY: clean
 |