anbox-modules/ashmem/Makefile

19 lines
418 B
Makefile
Raw Normal View History

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
2018-09-06 19:30:17 +08:00
VZ= $(shell uname -r | grep vz)
ifneq ($(VZ),)
ccflags-y += -DVZKERNEL
endif
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