mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-07-25 00:20:43 +00:00
9 lines
231 B
Makefile
9 lines
231 B
Makefile
#
|
|
# Makefile for grip sensors
|
|
#
|
|
ifneq (,$(filter m,$(CONFIG_SENSORS_SX9385) $(CONFIG_SENSORS_SX9385_SUB)))
|
|
obj-m += sx9385.o
|
|
else ifneq (,$(filter y,$(CONFIG_SENSORS_SX9385) $(CONFIG_SENSORS_SX9385_SUB)))
|
|
obj-y += sx9385.o
|
|
endif
|