git subrepo pull components/f4ll_c

subrepo:
  subdir:   "components/f4ll_c"
  merged:   "4754b65"
upstream:
  origin:   "git@git.pcmuhely.hu:compi/f4ll_c.git"
  branch:   "master"
  commit:   "4754b65"
git-subrepo:
  version:  "0.4.0"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "5d6aba9"
This commit is contained in:
Attila Body 2019-11-28 11:41:10 +01:00
parent 6f89e70a2a
commit 357b30b344
11 changed files with 140 additions and 72 deletions

View file

@ -1,10 +1,17 @@
#encoder
SELF_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
REL_DIR := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
ifeq ($(MKDBG), 1)
$(info >>> $(REL_DIR)/component.mk)
$(info >>> $(REL_DIR)/component.mk)
endif
$(eval C_SOURCES += $(wildcard $(REL_DIR)/*.c))
#$(eval C_SOURCES += $(wildcard $(REL_DIR)/*.c))
$(eval C_SOURCES += \
$(REL_DIR)/dmahelper.c \
$(REL_DIR)/crcscheduler.c \
$(REL_DIR)/strutil.c \
$(REL_DIR)/memcpydma.c ) \
#$(REL_DIR)/packetusart.c \
#$(REL_DIR)/consolehandler.c \
ifeq ($(MKDBG), 1)
$(info <<<)
$(info <<<)
endif