From e0422e1b84272c14790a172e76c340caebd5a4fd Mon Sep 17 00:00:00 2001 From: RaySlash Date: Wed, 4 Oct 2023 14:34:31 +1000 Subject: deps: fix path and pass build --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2cac153..ddd0091 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ KDIR ?= /lib/modules/$(shell uname -r)/build -all: deps/tminit +all: hid-tminit $(MAKE) -C $(KDIR) M=$(shell pwd) modules -install: deps/tminit +install: hid-tminit $(MAKE) -C $(KDIR) M=$(shell pwd) modules_install depmod -A -clean: deps/tminit +clean: hid-tminit $(MAKE) -C $(KDIR) M=$(shell pwd) clean -.PHONY: deps/tminit -deps/tminit: - $(MAKE) -C tminit KDIR="$(KDIR)" $(MAKECMDGOALS) +.PHONY: hid-tminit +hid-tminit: + $(MAKE) -C deps/tminit KDIR="$(KDIR)" $(MAKECMDGOALS) -- cgit v1.3