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)
		
			
				
	
	
		
			17 lines
		
	
	
		
			543 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			543 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
#
 | 
						|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
 | 
						|
# project subdirectory.
 | 
						|
#
 | 
						|
 | 
						|
PROJECT_NAME := spiffsgen
 | 
						|
 | 
						|
include $(IDF_PATH)/make/project.mk
 | 
						|
 | 
						|
# Create a SPIFFS image from the contents of the 'spiffs_image' directory
 | 
						|
# that fits the partition named 'storage'. FLASH_IN_PROJECT indicates that
 | 
						|
# the generated image should be flashed when the entire project is flashed to
 | 
						|
# the target with 'make flash'.
 | 
						|
SPIFFS_IMAGE_FLASH_IN_PROJECT := 1
 | 
						|
$(eval $(call spiffs_create_partition_image,storage,spiffs_image))
 |