first commit (probably doesnt work)

This commit is contained in:
Lauchmelder23 2022-06-06 21:59:25 +02:00
commit ec9d8234ea
7 changed files with 188 additions and 0 deletions

15
Makefile Normal file
View 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