aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-27 12:49:19 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-27 12:49:19 +0200
commit9c6d7a4155b785f6ffda76047418ba8e81ca2d9f (patch)
tree2021edacfc824356e5770d841e9d33ab3be517be
parent4e2a713e194c6dfc51c388a92f06b311e3d979c9 (diff)
downloadcherry-9c6d7a4155b785f6ffda76047418ba8e81ca2d9f.tar.gz
cherry-9c6d7a4155b785f6ffda76047418ba8e81ca2d9f.zip
Change variable NAME to LIBNAME and add OPT variable
-rw-r--r--config.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/config.mk b/config.mk
index 4cebd77..a349970 100644
--- a/config.mk
+++ b/config.mk
@@ -1,12 +1,11 @@
# See LICENSE file for copyright and license details.
-NAME = cherry
+LIBNAME = libcherry
CC = cc
-SRC != find src -name '*.c'
-OBJ = ${SRC:.c=.o}
LIB = x11 utils log
STD = c11
+OPT = -O2 -pipe
#WRN = -Wall -Werror
CFLAGS != pkg-config --cflags ${LIB}