raspi_gpio_driver

annotate Makefile @ 2:a7543d592206

- interrupt debouncing (crude) - blinking another led when pressing the button - using broadcom custom pullup/down function
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 05 Mar 2016 04:55:03 +0000
parents
children
rev   line source
nuclear@0 1 obj-m := gpio.o
nuclear@0 2
nuclear@0 3 .PHONY: all
nuclear@0 4 all:
nuclear@0 5 make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
nuclear@0 6
nuclear@0 7 .PHONY: clean
nuclear@0 8 clean:
nuclear@0 9 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean