summaryrefslogtreecommitdiff
path: root/source3/lib/pthreadpool/Makefile
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-04-22 11:47:11 +0200
committerVolker Lendecke <vl@samba.org>2011-04-25 09:50:32 +0200
commit62689d8166b8e070f855e6910470796dd7e1b2c8 (patch)
tree3ff4c20867ed0401753fa880b949fa98dc795012 /source3/lib/pthreadpool/Makefile
parent23a6af46c84cd9b738af403d80c5187d858eac03 (diff)
downloadsamba-62689d8166b8e070f855e6910470796dd7e1b2c8.tar.gz
samba-62689d8166b8e070f855e6910470796dd7e1b2c8.tar.bz2
samba-62689d8166b8e070f855e6910470796dd7e1b2c8.zip
s3: Many pthreadpool fixes
In particular, this makes it fork-safe
Diffstat (limited to 'source3/lib/pthreadpool/Makefile')
-rw-r--r--source3/lib/pthreadpool/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/lib/pthreadpool/Makefile b/source3/lib/pthreadpool/Makefile
new file mode 100644
index 0000000000..48626bd2c0
--- /dev/null
+++ b/source3/lib/pthreadpool/Makefile
@@ -0,0 +1,9 @@
+all: tests
+
+CFLAGS=-O3 -g -Wall
+
+pthreadpool.o: pthreadpool.c pthreadpool.h
+ gcc -c -O3 -o pthreadpool.o pthreadpool.c -I../../..
+
+tests: tests.o pthreadpool.o
+ gcc -o tests tests.o pthreadpool.o -lpthread \ No newline at end of file