# CC=gcc
CFLAGS=-O $(VFLAG)

socket_init:
	$(CC) $(CFLAGS) -o socket_init socket_init.c ../lib/libuipc.a


clean:
	rm -f socket_init core *.o
