mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			177 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			177 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
TOPTARGETS := all clean test coverage_report
 | 
						|
 | 
						|
SUBDIRS := $(wildcard */.)
 | 
						|
 | 
						|
$(TOPTARGETS): $(SUBDIRS)
 | 
						|
$(SUBDIRS):
 | 
						|
	$(MAKE) -C $@ $(MAKECMDGOALS)
 | 
						|
 | 
						|
.PHONY: $(TOPTARGETS) $(SUBDIRS)
 |