From 4ba2f970e84cb61cdd7dd33f18fa15157d8f709b Mon Sep 17 00:00:00 2001 From: Stefan 'psYchotic' Zwanenburg Date: Sat, 31 Oct 2009 14:18:38 +0100 Subject: [PATCH] Makefile: renamed the LIBS variable to the more common LDFLAGS. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2616ccc..524407e 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ PROJ=todo CFLAGS+=-I. -Wall -Werror -ansi CFLAGS+=`pkg-config --cflags sqlite3` -LIBS+=`pkg-config --libs sqlite3` -LIBS+=-lreadline +LDFLAGS+=`pkg-config --libs sqlite3` +LDFLAGS+=-lreadline OBJS=todo.o add.o del.o help.o list.o mark.o myarray.o quit.o show.o $(PROJ): $(OBJS) - $(CC) -o $(PROJ) $(OBJS) $(LIBS) + $(CC) -o $(PROJ) $(OBJS) $(LDFLAGS) clean: rm -rf $(OBJS) $(PROJ) -- 2.11.4.GIT