first commit (probably doesnt work)
This commit is contained in:
commit
ec9d8234ea
7 changed files with 188 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
obj-m = lcd.o
|
||||
lcd-y = src/lcd.o src/io.o
|
||||
|
||||
KVERSION = $(shell uname -r)
|
||||
|
||||
all: module clean_int
|
||||
|
||||
module:
|
||||
make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
|
||||
|
||||
clean_int:
|
||||
rm */*.o *.o */.*.cmd .*.cmd *.mod *.c *.symvers *.order
|
||||
|
||||
clean:
|
||||
make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
|
Loading…
Add table
Add a link
Reference in a new issue