mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
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
|