1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/lib/pthreadpool/Makefile
Matthieu Patou dd25d75b96 Move pthreadpool to top of the tree.
Signed-off-by: Matthieu Patou <mat@matws.net>
Reviewed-by: Jeremy Allison <jra@samba.org>
2017-02-09 20:04:12 +01: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