diff options
author | 2023-05-27 12:49:19 +0200 | |
---|---|---|
committer | 2023-05-27 12:49:19 +0200 | |
commit | 9c6d7a4155b785f6ffda76047418ba8e81ca2d9f (patch) | |
tree | 2021edacfc824356e5770d841e9d33ab3be517be | |
parent | 4e2a713e194c6dfc51c388a92f06b311e3d979c9 (diff) | |
download | cherry-9c6d7a4155b785f6ffda76047418ba8e81ca2d9f.tar.gz cherry-9c6d7a4155b785f6ffda76047418ba8e81ca2d9f.zip |
Change variable NAME to LIBNAME and add OPT variable
-rw-r--r-- | config.mk | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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} |