mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 03:59:14 +00:00 
			
		
		
		
	Still leaves some intermediate repos in `base/` See #1266 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			127 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			127 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
DIRS = $(shell find . -type d -depth 1)
 | 
						|
.PHONY: clean dirs $(DIRS)
 | 
						|
 | 
						|
push: $(DIRS)
 | 
						|
 | 
						|
$(DIRS):
 | 
						|
	$(MAKE) -C $@
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f hash
 |