aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRaySlash <stevemathewjoy@gmail.com>2023-10-04 14:23:14 +1000
committerRaySlash <stevemathewjoy@gmail.com>2023-10-04 14:30:46 +1000
commit8036ced205934b71717a1814b8053b473de11a7c (patch)
tree5cdb948b038f644ac52ded6ccc53f35541d7748b /Makefile
parentfc6076449bd39a17fc8210af38c941ece9cf9cc0 (diff)
downloadhid-tmff2-8036ced205934b71717a1814b8053b473de11a7c.tar.gz
hid-tmff2-8036ced205934b71717a1814b8053b473de11a7c.zip
deps: update Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5e2ab40..2cac153 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,16 @@
KDIR ?= /lib/modules/$(shell uname -r)/build
-all: hid-tminit
+all: deps/tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) modules
-install: hid-tminit
+install: deps/tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) modules_install
depmod -A
-clean: hid-tminit
+clean: deps/tminit
$(MAKE) -C $(KDIR) M=$(shell pwd) clean
-.PHONY: hid-tminit
-hid-tminit:
- $(MAKE) -C hid-tminit KDIR="$(KDIR)" $(MAKECMDGOALS)
+.PHONY: deps/tminit
+deps/tminit:
+ $(MAKE) -C tminit KDIR="$(KDIR)" $(MAKECMDGOALS)