mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 13:32:04 +08:00
c251b312d8
git-subtree-dir: panda git-subtree-split: c371fe688dbad4c53635905d3471a01c185e811d
19 lines
257 B
Makefile
19 lines
257 B
Makefile
VERSION=0.0.1
|
|
obj-m+=panda.o
|
|
|
|
link:
|
|
sudo dkms add `pwd`
|
|
|
|
build:
|
|
sudo dkms build panda/$(VERSION)
|
|
|
|
install:
|
|
sudo dkms install panda/$(VERSION)
|
|
|
|
all: build install
|
|
|
|
uninstall:
|
|
sudo dkms uninstall panda/$(VERSION)
|
|
sudo dkms remove panda/$(VERSION) --all
|
|
|