You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
include $(LITEOSTOPDIR)/config.mk
|
|
include $(DMCUDIR)/configs/common.mk
|
|
|
|
MODULE_NAME := $(notdir $(shell pwd))
|
|
|
|
LITEOS_CFLAGS += -I$(DMCUDIR)/include \
|
|
-I$(OSALDIR)/include \
|
|
-I$(DRVDIR)/../include/generic \
|
|
-I$(DMCUDIR)/../mailbox \
|
|
-I$(DMCUDIR)/platform/log \
|
|
-I$(DMCUDIR)/platform/proc \
|
|
-I$(DRVDIR)/dmcu/ipcm \
|
|
-I$(LITEOSTOPDIR)/kernel/include \
|
|
-I$(LITEOSTOPDIR)/lib/libc/include \
|
|
-I$(LITEOSTOPDIR)/open_source/incubator-nuttx/liteos/fs/include \
|
|
-I${LITEOSTOPDIR}/components/fdt/include \
|
|
-I$(LITEOSTOPDIR)/open_source/freebsd/sys/contrib/libfdt \
|
|
-I$(LITEOSTOPDIR)/components/fdt/include/ \
|
|
-I$(LITEOSTOPDIR)/fs/include \
|
|
-I$(LITEOSTOPDIR)/compat/linux/include/linux
|
|
|
|
LOCAL_SRCS_$(CONFIG_DMCU_INIT) += dmcu_app.c dmcu_pmp.c dmcu_comm.c
|
|
LOCAL_SRCS_$(CONFIG_DMCU_VAM) += dmcu_hal.c dmcu_mem.c dmcu_dbg.c dmcu_adapt.c
|
|
LOCAL_SRCS = $(LOCAL_SRCS_y)
|
|
|
|
$(warning $(MODULE))
|
|
include $(MODULE)
|