Add missing libraries to Makefile.

This commit is contained in:
Christopher Peplin 2016-07-07 09:37:16 -04:00
parent 57870860bb
commit 50722a2a61
1 changed files with 2 additions and 2 deletions

View File

@ -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