mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
10 lines
188 B
Makefile
10 lines
188 B
Makefile
LVGL_DIR := $(CURDIR)/../..
|
|
include ../../lvgl.mk
|
|
|
|
CSRCS += test.c
|
|
CFLAGS += -DLV_CONF_SKIP=1 -I$(LVGL_DIR)/..
|
|
COBJS := $(patsubst %.c, %.o, $(CSRCS))
|
|
|
|
test_file: $(COBJS)
|
|
$(CC) -o $@ $^
|