From eb943d3547520e7ee0c511a599e69355f516b9ab Mon Sep 17 00:00:00 2001 From: cbdev Date: Sun, 18 Feb 2018 19:12:47 +0100 Subject: Implement evdev input via libevdev --- makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index 493c690..3ab55a1 100644 --- a/makefile +++ b/makefile @@ -11,6 +11,8 @@ CFLAGS ?= -g -Wall midimonster: LDLIBS = -ldl midimonster: CFLAGS += -rdynamic -DPLUGINS=$(PLUGINDIR) midi.so: LDLIBS = -lasound +evdev.so: CFLAGS += $(shell pkg-config --cflags libevdev) +evdev.so: LDLIBS = $(shell pkg-config --libs libevdev) %.so :: %.c %.h -- cgit v1.2.3