implementing support for gestures with edge and corner detection

Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
Maarten van Gompel 2020-08-09 16:23:45 +02:00
parent ee47ac2a5b
commit 827d4c8f2c
5 changed files with 233 additions and 54 deletions

View file

@ -2,6 +2,9 @@ SRC = lisgd.c
OBJ = ${SRC:.c=.o}
LDFLAGS = -linput -lm
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
all: options lisgd
options:
@ -19,7 +22,7 @@ config.h:
cp config.def.h $@
lisgd: ${OBJ}
${CC} -g -o $@ ${OBJ} ${LDFLAGS}
${CC} -g -o $@ ${OBJ} -I${X11INC} -lX11 ${LDFLAGS}
install: all
mkdir -p ${DESTDIR}${PREFIX}/bin