1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/tests/makefile/Makefile

10 lines
229 B
Makefile
Raw Normal View History

LVGL_PATH := $(CURDIR)/../..
2022-04-29 19:38:04 -04:00
include ../../lvgl.mk
CSRCS += test.c
CFLAGS += -DLV_CONF_SKIP=1 -DLV_BUILD_TEST=1 -DLV_USE_DEV_VERSION -I$(LVGL_PATH)/..
2022-04-29 19:38:04 -04:00
COBJS := $(patsubst %.c, %.o, $(CSRCS))
test_file: $(COBJS)
$(CC) -o $@ $^