summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorerdgeist <>2007-11-16 20:19:15 +0000
committererdgeist <>2007-11-16 20:19:15 +0000
commit4735b99db2562494c59fa47277ffd7dee3b44fc1 (patch)
tree6b09a6063d2ab7081bf5e3aa399ba1a28f799926 /Makefile
parent6458a37d82aef8e910b2aed4cf25333e211482ae (diff)
Forgot to specify -pthread when using threads
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ec1b1ad..db6e665 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ CC?=gcc
8OPTS_debug=-g -ggdb #-pg # -fprofile-arcs -ftest-coverage 8OPTS_debug=-g -ggdb #-pg # -fprofile-arcs -ftest-coverage
9OPTS_production=-Os 9OPTS_production=-Os
10CFLAGS+=-I../libowfat -Wall -pipe -Wextra #-pedantic -ansi 10CFLAGS+=-I../libowfat -Wall -pipe -Wextra #-pedantic -ansi
11LDFLAGS+=-L../libowfat/ -lowfat 11LDFLAGS+=-L../libowfat/ -lowfat -pthread
12 12
13BINARY =opentracker 13BINARY =opentracker
14HEADERS=trackerlogic.h scan_urlencoded_query.h ot_mutex.h ot_stats.h ot_sync.h ot_vector.h ot_clean.h ot_udp.h ot_iovec.h ot_fullscrape.h ot_accesslist.h 14HEADERS=trackerlogic.h scan_urlencoded_query.h ot_mutex.h ot_stats.h ot_sync.h ot_vector.h ot_clean.h ot_udp.h ot_iovec.h ot_fullscrape.h ot_accesslist.h