26 lines
591 B
Makefile
26 lines
591 B
Makefile
ifeq ($(CFG_SDK_EXPORT_FLAG),)
|
|
ifneq ($(srctree),)
|
|
KERNEL_DIR := $(srctree)
|
|
SDK_DIR := $(shell cd $(KERNEL_DIR)/../../.. && /bin/pwd)
|
|
else
|
|
SDK_DIR := $(shell cd $(CURDIR)/../../../.. && /bin/pwd)
|
|
endif
|
|
endif
|
|
|
|
include $(SDK_DIR)/build/base.mk
|
|
|
|
MOD_NAME := xm_lsadc
|
|
|
|
SRCS := adc.c
|
|
SRCS += adc_init.c
|
|
|
|
SDK_KER_CFLAGS += -I$(GMP_DIR)/include \
|
|
-I$(GMP_DIR)/drv/osal/include \
|
|
-I$(GMP_DIR)/drv/include
|
|
|
|
SDK_KER_CFLAGS += -DUSER_BIT_32 -DKERNEL_BIT_32 -Wno-date-time -D_GNU_SOURCE
|
|
|
|
include $(SDK_DIR)/build/sdk_ko_rules.mk
|
|
|
|
|