Reorganizing project

This commit is contained in:
Attila Body 2019-11-08 11:47:49 +01:00
commit 9924e704db
14 changed files with 1029 additions and 0 deletions

11
component.mk Normal file
View file

@ -0,0 +1,11 @@
#encoder
SELF_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
REL_DIR := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
ifeq ($(MKDBG), 1)
$(info >>> $(REL_DIR)/component.mk)
endif
$(eval C_INCLUDES += -I$(REL_DIR)/inc)
$(eval CXX_SOURCES += $(wildcard $(REL_DIR)/src/*.cpp))
ifeq ($(MKDBG), 1)
$(info <<<)
endif