aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2023-10-14 20:16:26 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2023-10-14 20:16:26 +0300
commita3aba95241247c5aa5c8e16c839cf6909ffe80a9 (patch)
tree5f4692527eb9a82d95d08754e4eb96be7df90ba5 /Makefile
parentb2872a893afd0f9cd0bfd4644348f3b8645edbed (diff)
parent1ac3f52cfd972787e4684350f7593614837b6b19 (diff)
downloadhid-tmff2-a3aba95241247c5aa5c8e16c839cf6909ffe80a9.tar.gz
hid-tmff2-a3aba95241247c5aa5c8e16c839cf6909ffe80a9.zip
Merge branch 'RaySlash-rebase'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5e2ab40..86c2a51 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
-hid-tminit:
- $(MAKE) -C hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)
+.PHONY: deps/hid-tminit
+deps/hid-tminit:
+ $(MAKE) -C deps/hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)