mirror of
				https://gitee.com/jiuyilian/embedded-framework.git
				synced 2025-10-24 18:20:15 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			206 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
LVGL_DIR := $(CURDIR)/../..
 | 
						|
include ../../lvgl.mk
 | 
						|
 | 
						|
CSRCS += test.c
 | 
						|
CFLAGS += -DLV_CONF_SKIP=1 -DLV_BUILD_TEST=1 -I$(LVGL_DIR)/..
 | 
						|
COBJS := $(patsubst %.c, %.o, $(CSRCS))
 | 
						|
 | 
						|
test_file: $(COBJS)
 | 
						|
	$(CC) -o $@ $^
 |