changed all -lpthread to -pthread

This commit is contained in:
Dhanya Maliakal
2017-04-07 14:28:00 +02:00
parent 8fb39b8c7e
commit 5ddccbdee4

View File

@ -12,10 +12,10 @@ FLAGS= -Wall -pthread -DVERBOSE -DVERYVERBOSE #-DEIGER_DEBUG2 -DEIGER_DEBUG -D
# Setting up the verbose flags # Setting up the verbose flags
ifeq ($(DEBUG),1) ifeq ($(DEBUG),1)
FLAGS = -Wall -DVERBOSE FLAGS = -Wall -pthread -DVERBOSE
endif endif
ifeq ($(DEBUG),2) ifeq ($(DEBUG),2)
FLAGS = -Wall -DVERYVERBOSE FLAGS = -Wall -pthread -DVERYVERBOSE
endif endif
############################################################## ##############################################################