blob: c3db1800e6d7fede413d712d81289606822108fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
#
ifeq ($(KERNELRELEASE),)
KERNELDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
TOPDIR := $(PWD)/../../../..
modules modules_install clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) $@ TOPDIR=$(TOPDIR)
else
-include $(TOPDIR)/Makefile.common
obj-$(CONFIG_CAN_CCAN) += ccan.o
obj-$(CONFIG_CAN_H7202) += h7202_can.o
endif
|