From 84b6c1eafa78324c8314be79bd35b84d5641b4da Mon Sep 17 00:00:00 2001 From: DogeyStamp Date: Thu, 5 Aug 2021 18:50:43 -0400 Subject: [PATCH] Remove useless library --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c04f396..c70573e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ SRC = minrss.c util.c net.c xml.c OBJ = $(SRC:.c=.o) CC = cc INCS = -LIBS = -lcurl -I/usr/include/libxml2 -lxml2 -lm +LIBS = -lcurl -I/usr/include/libxml2 -lxml2 WARN = -Wall -Wpedantic -Wextra CFLAGS = $(LIBS) $(INCS) $(WARN) -DVERSION=\"$(VERSION)\"