1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/pthreadpool/Makefile

9 lines
205 B
Makefile
Raw Normal View History

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