diff options
| author | RaySlash <stevemathewjoy@gmail.com> | 2023-10-04 14:34:31 +1000 |
|---|---|---|
| committer | RaySlash <stevemathewjoy@gmail.com> | 2023-10-04 14:39:41 +1000 |
| commit | e0422e1b84272c14790a172e76c340caebd5a4fd (patch) | |
| tree | 82fe6bd34f8254edbaa0dfd81deae0efc49e1380 | |
| parent | 647e972e49133f0cc96566c5053d6c3a491a244b (diff) | |
| download | hid-tmff2-e0422e1b84272c14790a172e76c340caebd5a4fd.tar.gz hid-tmff2-e0422e1b84272c14790a172e76c340caebd5a4fd.zip | |
deps: fix path and pass build
| -rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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) |
