From 6db25134526f2d33579883525cbf7dd70609bc88 Mon Sep 17 00:00:00 2001 From: Luka Miljak Date: Fri, 14 Mar 2014 18:09:50 +0000 Subject: [PATCH] Removing unnecessary library definition --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61022dc..61fb8d9 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ LIBS = -lpthread # compiler and flags CC = gcc -CFLAGS = -Wall $(INCDIRS) $(LIBDIRS) $(LIBS) +CFLAGS = -Wall $(INCDIRS) $(LIBDIRS) # objects are .o files created from all .c files in the directory (same name) OBJECTS = $(patsubst %.c,%.o,$(wildcard *.c))