Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
Note: File does not exist in v4.10.11.
 1# SPDX-License-Identifier: GPL-2.0
 2#
 3# Makefile for the GNSS subsystem.
 4#
 5
 6obj-$(CONFIG_GNSS)			+= gnss.o
 7gnss-y := core.o
 8
 9obj-$(CONFIG_GNSS_SERIAL)		+= gnss-serial.o
10gnss-serial-y := serial.o
11
12obj-$(CONFIG_GNSS_MTK_SERIAL)		+= gnss-mtk.o
13gnss-mtk-y := mtk.o
14
15obj-$(CONFIG_GNSS_SIRF_SERIAL)		+= gnss-sirf.o
16gnss-sirf-y := sirf.o
17
18obj-$(CONFIG_GNSS_UBX_SERIAL)		+= gnss-ubx.o
19gnss-ubx-y := ubx.o
20
21obj-$(CONFIG_GNSS_USB)			+= gnss-usb.o
22gnss-usb-y := usb.o