re-structured f4ll_c (introducing src, inc)

This commit is contained in:
Attila Body 2019-12-17 17:53:26 +01:00
parent 00f0f17a0f
commit 668852b23b
15 changed files with 4 additions and 3 deletions

View file

@ -4,7 +4,8 @@ ifeq ($(MKDBG), 1)
$(info >>> $(REL_DIR)/component.mk)
endif
$(eval C_SOURCES += $(wildcard $(REL_DIR)/*.c))
$(eval C_SOURCES += $(wildcard $(REL_DIR)/src/*.c))
$(eval COMMON_INCLUDES += -I$(REL_DIR)/inc)
ifeq ($(MKDBG), 1)
$(info <<<)

1
f4ll_c
View file

@ -1 +0,0 @@
.

View file

@ -4,7 +4,8 @@ ifeq ($(MKDBG), 1)
$(info >>> $(REL_DIR)/component.mk)
endif
$(eval C_SOURCES += $(wildcard $(REL_DIR)/*.c))
$(eval C_SOURCES += $(wildcard $(REL_DIR)/src/*.c))
$(eval COMMON_INCLUDES += -I$(REL_DIR)/inc)
$(eval CXX_SOURCES += $(wildcard $(REL_DIR)/test/*.cpp))
ifeq ($(MKDBG), 1)