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

11 lines
258 B
Makefile
Raw Normal View History

LVGL_PATH := $(CURDIR)/../..
2023-11-18 21:56:46 +01:00
$(info LVGL_PATH is set to: $(LVGL_PATH))
2022-04-29 19:38:04 -04:00
include ../../lvgl.mk
CSRCS += test.c
CFLAGS += -Werror -DLV_CONF_SKIP=1 -DLV_BUILD_TEST=1 -I$(LVGL_PATH)/..
2022-04-29 19:38:04 -04:00
COBJS := $(patsubst %.c, %.o, $(CSRCS))
test_file: $(COBJS)
$(CC) -o $@ $^