rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | # | ||||
3 | # Makefile for the Linux Controller Area Network core. | ||||
4 | # | ||||
5 | |||||
6 | obj-$(CONFIG_CAN) += can.o | ||||
7 | can-y := af_can.o | ||||
8 | can-$(CONFIG_PROC_FS) += proc.o | ||||
9 | |||||
10 | obj-$(CONFIG_CAN_RAW) += can-raw.o | ||||
11 | can-raw-y := raw.o | ||||
12 | |||||
13 | obj-$(CONFIG_CAN_BCM) += can-bcm.o | ||||
14 | can-bcm-y := bcm.o | ||||
15 | |||||
16 | obj-$(CONFIG_CAN_GW) += can-gw.o | ||||
17 | can-gw-y := gw.o |