aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRaySlash <stevemathewjoy@gmail.com>2023-10-04 14:59:24 +1000
committerRaySlash <stevemathewjoy@gmail.com>2023-10-04 15:06:51 +1000
commit35b2ee8412d03172613ab12dd452fcd5660f934b (patch)
tree7cc67f4856bc3b5447a12aa8d3d30a61cd976713 /Makefile
parent0c1382901e189557037343029fa86a7d249892b7 (diff)
downloadhid-tmff2-35b2ee8412d03172613ab12dd452fcd5660f934b.tar.gz
hid-tmff2-35b2ee8412d03172613ab12dd452fcd5660f934b.zip
deps: update paths
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 63f9b60..747a48e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,16 @@
KDIR ?= /lib/modules/$(shell uname -r)/build
-all: hid-tminit
+all: deps/hid-tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) modules
-install: hid-tminit
+install: deps/hid-tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) modules_install
depmod -A
-clean: hid-tminit
+clean: deps/hid-tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) clean
-.PHONY: hid-tminit
+.PHONY: deps/hid-tminit
hid-tminit:
$(MAKE) -C deps/hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)