raspi_gpio_driver

view Makefile @ 1:acfcd119e532

- dropped all my custom i/o register fiddling in favor of the kernel gpio functions which are already implemented by broadcom. - added a test interrupt handler
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 05 Mar 2016 04:25:33 +0000
parents
children
line source
1 obj-m := gpio.o
3 .PHONY: all
4 all:
5 make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
7 .PHONY: clean
8 clean:
9 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean