implementing support for gestures with edge and corner detection
Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
parent
ee47ac2a5b
commit
827d4c8f2c
5 changed files with 233 additions and 54 deletions
5
Makefile
5
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue