1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/lib/pthreadpool/Makefile
Volker Lendecke 62689d8166 s3: Many pthreadpool fixes
In particular, this makes it fork-safe
2011-04-25 09:50:32 +02:00

9 lines
205 B
Makefile

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