summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-21 23:32:50 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-21 23:32:50 +0200
commit7288bdd42360109f26a684431fa286ea265d07a4 (patch)
tree2dc070a742a3f61accbcf6f9afd8449d34dbd01c /Makefile
parent56ee373d51e6d3acf3e284a59c8f852913b82e64 (diff)
downloadtris-7288bdd42360109f26a684431fa286ea265d07a4.tar.gz
tris-7288bdd42360109f26a684431fa286ea265d07a4.zip
Remove util.* for the liblog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e0f7f62..66c7c57 100644
--- a/Makefile
+++ b/Makefile
@@ -29,8 +29,8 @@ OBJ = ${SRC:.c=.o}
CFLAGS != pkg-config --cflags ${LIBS}
LFLAGS != pkg-config --libs ${LIBS}
-CFLAGS += -DX11
-LFLAGS += -lm
+CFLAGS += -DX11 -Ilog/src
+LFLAGS += -lm -Llog -l:liblog.a
${PROG}: ${OBJ}
${CC} ${OBJ} -o $@ ${LFLAGS}