diff options
author | Christopher Peplin <cpeplin@uberatc.com> | 2016-07-07 09:37:16 -0400 |
---|---|---|
committer | Christopher Peplin <cpeplin@uberatc.com> | 2016-07-07 09:37:16 -0400 |
commit | 50722a2a61106b7b8eb0774edf53be3c1255cd59 (patch) | |
tree | 8f44beb1c78db393e18c650bfd940bbca4f6a800 | |
parent | 57870860bb1e52b4593eca5f1595590e04437aad (diff) |
Add missing libraries to Makefile.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |