From 973fa97138a82e98ffded5bd92e0268b2364aa15 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 13 Jan 2023 18:31:56 +0300 Subject: Added HID support via Evdev * This works for relative, absolute and keyboard devices * devices can be grabbed, so they do not interfere with the rest of the system --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 97ff2f7..d91b265 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ LDFLAGS += -rdynamic all : applause -applause : applause.o - $(CC) -o $@ $< $(LDFLAGS) +applause : applause.o evdev.o + $(CC) -o $@ $^ $(LDFLAGS) clean: $(RM) *.o applause -- cgit v1.2.3