From 50722a2a61106b7b8eb0774edf53be3c1255cd59 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Thu, 7 Jul 2016 09:37:16 -0400 Subject: [PATCH] Add missing libraries to Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fe84163..90165ba 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC = gcc INCLUDES = -Isrc -Ideps/bitfield-c/src CFLAGS = $(INCLUDES) -c -Wall -Werror -g -ggdb -std=gnu99 -coverage -LDFLAGS = -coverage -lm -LDLIBS = -lcheck +LDFLAGS = -coverage +LDLIBS = -lcheck -lm -lrt -lpthread TEST_DIR = tests TEST_OBJDIR = build