summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Peplin <cpeplin@uberatc.com>2016-07-07 09:37:16 -0400
committerChristopher Peplin <cpeplin@uberatc.com>2016-07-07 09:37:16 -0400
commit50722a2a61106b7b8eb0774edf53be3c1255cd59 (patch)
tree8f44beb1c78db393e18c650bfd940bbca4f6a800
parent57870860bb1e52b4593eca5f1595590e04437aad (diff)
Add missing libraries to Makefile.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fe841632..90165ba6 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