6db4831e98
Android 14
9 lines
243 B
Makefile
9 lines
243 B
Makefile
#
|
|
# Makefile for grip sensors
|
|
#
|
|
ifneq (,$(filter m,$(CONFIG_SENSORS_ISG5320A) $(CONFIG_SENSORS_ISG5320A_SUB)))
|
|
obj-m += isg5320a.o
|
|
else ifneq (,$(filter y,$(CONFIG_SENSORS_ISG5320A) $(CONFIG_SENSORS_ISG5320A_SUB)))
|
|
obj-y += isg5320a.o
|
|
endif
|