Update the Makefile to correctly link against libpthread on Linux systems

This commit is contained in:
R. Tyler Croy 2012-11-01 09:13:02 -07:00
parent 2f39effb3f
commit 8de446ad79
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ OBJDIR := obj
OBJ := roxanne_db.o tuple_bits.o hash_32.o
DEPS := roxanne_db.h
ifeq (${OS},Linux)
LIBS := -lrt -lm
LIBS := -lrt -lm -lpthread
endif
default: dbr