Makefile 495 B

1234567891011121314
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  3. # For include/trace/define_trace.h to include trace.h
  4. CFLAGS_core.o = -I$(src)
  5. obj-$(CONFIG_SURFACE_AGGREGATOR) += surface_aggregator.o
  6. surface_aggregator-y := core.o
  7. surface_aggregator-y += ssh_parser.o
  8. surface_aggregator-y += ssh_packet_layer.o
  9. surface_aggregator-y += ssh_request_layer.o
  10. surface_aggregator-$(CONFIG_SURFACE_AGGREGATOR_BUS) += bus.o
  11. surface_aggregator-y += controller.o