Blame view

drivers/greybus/Makefile 409 Bytes
8465def49   Greg Kroah-Hartman   staging: greybus:...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  # SPDX-License-Identifier: GPL-2.0
  # Greybus core
  greybus-y :=	core.o		\
  		debugfs.o	\
  		hd.o		\
  		manifest.o	\
  		module.o	\
  		interface.o	\
  		bundle.o	\
  		connection.o	\
  		control.o	\
  		svc.o		\
  		svc_watchdog.o	\
  		operation.o
  
  obj-$(CONFIG_GREYBUS)		+= greybus.o
  
  # needed for trace events
  ccflags-y += -I$(src)
b81beec9c   Greg Kroah-Hartman   staging: greybus:...
20
21
22
23
24
  
  # Greybus Host controller drivers
  gb-es2-y := es2.o
  
  obj-$(CONFIG_GREYBUS_ES2)	+= gb-es2.o