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