From 6e5171308fc2724bdf1597edb00f53e7338a81b4 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 5 Jun 2022 04:10:28 +0300 Subject: [PATCH] Fix Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3d276b9..adde8ee 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC = clang -CFLAGS = -O2 -lcjson +CFLAGS = -O2 all: - ${CC} -O2 -lcjson main.c -o make-libs-string + ${CC} -lcjson main.c -o make-libs-string clean: rm -f *.o