diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-01-13 18:31:56 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-09-05 23:39:23 +0300 |
commit | 973fa97138a82e98ffded5bd92e0268b2364aa15 (patch) | |
tree | cebca749d9eb830647cd8af2189d11ce3be26647 /Makefile | |
parent | 3fc5229269fb01de85e56bacce91f11799e62054 (diff) | |
download | applause2-973fa97138a82e98ffded5bd92e0268b2364aa15.tar.gz |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |