Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame] | 1 | # |
2 | # Makefile for the Linux Controller Area Network core. | ||||
3 | # | ||||
4 | |||||
5 | obj-$(CONFIG_CAN) += can.o | ||||
6 | can-y := af_can.o proc.o | ||||
7 | |||||
8 | obj-$(CONFIG_CAN_RAW) += can-raw.o | ||||
9 | can-raw-y := raw.o | ||||
10 | |||||
11 | obj-$(CONFIG_CAN_BCM) += can-bcm.o | ||||
12 | can-bcm-y := bcm.o | ||||
13 | |||||
14 | obj-$(CONFIG_CAN_GW) += can-gw.o | ||||
15 | can-gw-y := gw.o |