mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
dd25d75b96
Signed-off-by: Matthieu Patou <mat@matws.net> Reviewed-by: Jeremy Allison <jra@samba.org>
9 lines
205 B
Makefile
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
|