aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)