-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
16 lines (14 loc) · 725 Bytes
/
Makefile
File metadata and controls
16 lines (14 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_ESWIN_MC) += eswin_cpuid_hartid_convert.o
obj-$(CONFIG_ESWIN_RSV_MEMBLOCK) += eswin_memblock.o
obj-$(CONFIG_ESWIN_CODACACHE_CONTROLLER) += codacache/
obj-$(CONFIG_ESWIN_BUDDY) += es_buddy/
obj-$(CONFIG_ESWIN_PROC) += es_proc/
obj-$(CONFIG_ESWIN_RSVMEM_HEAP) += es_rsvmem_heap/
obj-$(CONFIG_ESWIN_RSVMEM_HEAP) += es_mmz_vb/
obj-$(CONFIG_ESWIN_DEV_DMA_BUF) += es_dev_buf/
obj-$(CONFIG_ESWIN_IOMMU_RSV) += es_iommu_rsv/
obj-$(CONFIG_ESWIN_DMA_MEMCP) += es_dma_memcp/
obj-$(CONFIG_ESWIN_MALLOC_DMABUF) += es_malloc_dmabuf/
ES_MEM_HEADER := $(srctree)/drivers/memory/eswin/
COPY_HEADERS := $(shell cp $(ES_MEM_HEADER)/*.h $(srctree)/include/linux)