OBJ     = tes005realtime.o test001sockets.o test002integer.o test003block.o test004md5.o 
#CC      = gcc
#CFLAGS  = -O2
#CFLAGS   = $CFLAGS -I../lib
CFLAGS   = -I../lib -lpthread  -g -O2



tests   : $(OBJ)
	  $(CC) tes005realtime.o -o run_tes005realtime $(LIBS)

	  $(CC) test001sockets.o -o run_test001sockets $(LIBS)

	  $(CC) test002integer.o -o run_test002integer $(LIBS)

	  $(CC) test003block.o -o run_test003block $(LIBS)

	  $(CC) test004md5.o -o run_test004md5 $(LIBS)

tes005realtime.o        : tes005realtime.c

test001sockets.o        : test001sockets.c

test002integer.o        : test002integer.c

test003block.o        : test003block.c

test004md5.o        : test004md5.c

