brintos

brintos / linux-shallow public Read only

0
0
Text · 456 B · bb2cbad Raw
23 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the GNSS subsystem.4#5 6obj-$(CONFIG_GNSS)			+= gnss.o7gnss-y := core.o8 9obj-$(CONFIG_GNSS_SERIAL)		+= gnss-serial.o10gnss-serial-y := serial.o11 12obj-$(CONFIG_GNSS_MTK_SERIAL)		+= gnss-mtk.o13gnss-mtk-y := mtk.o14 15obj-$(CONFIG_GNSS_SIRF_SERIAL)		+= gnss-sirf.o16gnss-sirf-y := sirf.o17 18obj-$(CONFIG_GNSS_UBX_SERIAL)		+= gnss-ubx.o19gnss-ubx-y := ubx.o20 21obj-$(CONFIG_GNSS_USB)			+= gnss-usb.o22gnss-usb-y := usb.o23