mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
		
			
				
	
	
		
			20 lines
		
	
	
		
			562 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			562 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Component Makefile
 | 
						|
#
 | 
						|
 | 
						|
COMPONENT_ADD_INCLUDEDIRS := include $(IDF_TARGET)/include
 | 
						|
COMPONENT_SRCDIRS := src $(IDF_TARGET)
 | 
						|
 | 
						|
ifndef CONFIG_ESP32_NO_BLOBS
 | 
						|
    LIBS := core rtc net80211 pp smartconfig coexist espnow phy mesh
 | 
						|
    COMPONENT_ADD_LDFLAGS += -L$(COMPONENT_PATH)/lib/$(IDF_TARGET) \
 | 
						|
                          $(addprefix -l,$(LIBS))
 | 
						|
 | 
						|
    COMPONENT_ADD_LDFRAGMENTS += linker.lf
 | 
						|
 | 
						|
    COMPONENT_SUBMODULES += lib
 | 
						|
 | 
						|
    ALL_LIB_FILES := $(patsubst %,$(COMPONENT_PATH)/lib/$(IDF_TARGET)/lib%.a,$(LIBS))
 | 
						|
    COMPONENT_ADD_LINKER_DEPS += $(ALL_LIB_FILES)
 | 
						|
endif
 |