LookingGlass/module/Makefile
Geoffrey McRae 788f885759 [kvmfr] added the ability to obtain a dmabuf of the ivshmem memory
This is to enable the ability to use dri3 to create dmabuf backed
pixmaps directly.
2020-01-13 13:39:24 +11:00

23 lines
461 B
Makefile

obj-m += kvmfr.o
USER := $(shell whoami)
KVER ?= $(shell uname -r)
KDIR ?= /lib/modules/$(KVER)/build
all: test
make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean
test:
gcc test.c -Wall -Werror -g -Og -o test
load: all
grep -q '^uio' /proc/modules || sudo modprobe uio
grep -q '^kvmfr' /proc/modules && sudo rmmod kvmfr || true
sudo insmod ./kvmfr.ko
sudo chown $(USER) /dev/uio0
sudo chown $(USER) /dev/kvmfr0
.PHONY: test