summaryrefslogtreecommitdiffstats
path: root/driver/hdm-i2c/Makefile
blob: 1b961412c4266b52058f2550a428bc6201d52975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile
#

SRC := $(shell pwd)

obj-m += hdm_i2c.o
CFLAGS_hdm_i2c.o := -I$(src)/../../mostcore/files

all:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules

modules_install:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install

clean:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean