15 lines
341 B
Makefile
15 lines
341 B
Makefile
|
ccflags-y += -I$(src) -Wno-error=implicit-int -Wno-int-conversion
|
||
|
obj-m := ashmem_linux.o
|
||
|
ashmem_linux-y := deps.o ashmem.o
|
||
|
|
||
|
KERNEL_SRC ?= /lib/modules/$(shell uname -r)/build
|
||
|
|
||
|
all:
|
||
|
$(MAKE) -C $(KERNEL_SRC) V=0 M=$$PWD
|
||
|
|
||
|
install:
|
||
|
cp ashmem_linux.ko $(DESTDIR)/
|
||
|
|
||
|
clean:
|
||
|
rm -rf deps.h *.o *.ko *.mod.c *.symvers *.order .*.cmd .tmp_versions
|