28 lines
402 B
Makefile
28 lines
402 B
Makefile
PROJECT_NAME := littlefs
|
|
|
|
EXTRA_COMPONENT_DIRS := \
|
|
$(abspath .) \
|
|
$(abspath unit_tester) \
|
|
$(IDF_PATH)/tools/unit-test-app/components/
|
|
|
|
CFLAGS += \
|
|
-Werror
|
|
|
|
include $(IDF_PATH)/make/project.mk
|
|
|
|
.PHONY: tests
|
|
|
|
tests-build:
|
|
$(MAKE) \
|
|
TEST_COMPONENTS='src'
|
|
|
|
tests:
|
|
$(MAKE) \
|
|
TEST_COMPONENTS='src' \
|
|
flash monitor;
|
|
|
|
tests-enc:
|
|
$(MAKE) \
|
|
TEST_COMPONENTS='src' \
|
|
encrypted-flash monitor;
|
|
|