#Makefile for the PICA Library
#Compiler
CC = gcc

LIBNAME = pica


#all: main

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

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

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