Remove useless library

This commit is contained in:
dogeystamp 2021-08-05 18:50:43 -04:00
parent e48958d9ff
commit 84b6c1eafa
No known key found for this signature in database
GPG Key ID: 4B11A996ADE99001

View File

@ -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)\"