summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-17 14:10:39 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-17 14:10:39 +0200
commit268790307bde4859ac6ee5ac6c3d19ada9ed5a11 (patch)
treed0f0a0574cf33526668307bafc269a1a3d7df6e6 /Makefile
parenta3027cce6f5f7753147edc49aa4403a013338c3d (diff)
downloadtris-268790307bde4859ac6ee5ac6c3d19ada9ed5a11.tar.gz
tris-268790307bde4859ac6ee5ac6c3d19ada9ed5a11.zip
Add the maanagement of mouse press event
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e62045a..b3ef265 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,8 @@ OBJ = ${SRC:.c=.o}
CFLAGS != pkg-config --cflags ${LIBS}
LFLAGS != pkg-config --libs ${LIBS}
+CFLAGS += -DX11
+
${PROG}: ${OBJ}
${CC} ${OBJ} -o $@ ${LFLAGS}