#Makefile for the PICA Library
#Compiler
CC = gcc

LIBNAME = pica


#all: main

main : test_completo.o
	$(CC)  -o $@  test_completo.o -l${LIBNAME}  -lpthread

.c.o:
	gcc -fPIC -DPIC $(CFLAGS) -c -o $*.o $<

clean:
	rm -f *.o *.a *.so *~ core* \#* test_completo
