Makefile 477 B

12345678910111213141516171819202122
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for the GNSS subsystem.
  4. #
  5. obj-$(CONFIG_GNSS) += gnss.o
  6. gnss-y := core.o
  7. obj-$(CONFIG_GNSS_SERIAL) += gnss-serial.o
  8. gnss-serial-y := serial.o
  9. obj-$(CONFIG_GNSS_MTK_SERIAL) += gnss-mtk.o
  10. gnss-mtk-y := mtk.o
  11. obj-$(CONFIG_GNSS_SIRF_SERIAL) += gnss-sirf.o
  12. gnss-sirf-y := sirf.o
  13. obj-$(CONFIG_GNSS_UBX_SERIAL) += gnss-ubx.o
  14. gnss-ubx-y := ubx.o
  15. obj-$(CONFIG_GNSS_CMDLINE_SERIAL) += gnss-cmdline.o
  16. gnss-cmdline-y := cmdline.o