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