mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-27 20:22:05 +08:00
a32afb2532
git-subtree-dir: panda
git-subtree-split: 3b35621671aaa6de3fc66d85d30e4208a77e2489
old-commit-hash: b0b7a768f0
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
|
|
|