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

SRC := $(shell pwd)

obj-m += hdm_dim2.o
hdm_dim2-y := dim2_hdm.o dim2_hal.o dim2_sysfs.o
CFLAGS_dim2_hdm.o := -I$(src)/../../mostcore/files -I$(src)/../../aim-network/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