From 674fa6016e712fa4270ffa0b5b12fa2e9632b076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20M=C3=BCller?= Date: Thu, 16 Nov 2017 18:28:42 +0100 Subject: [PATCH] fixed make file --- driver-uinput/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/driver-uinput/Makefile b/driver-uinput/Makefile index c260683..0c7a843 100644 --- a/driver-uinput/Makefile +++ b/driver-uinput/Makefile @@ -2,7 +2,8 @@ TARGET = networktablet PREFIX = /usr/local BINDIR = $(PREFIX)/bin -networktablet : networktablet.c +networktablet: networktablet.c + gcc networktablet.c -o networktablet -lX11 `pkg-config --cflags --libs gtk+-3.0` clean : rm -f networktablet