CC=gcc

SOURCES=server
BINNAME=xweb

all:
	$(CC) -o $(BINNAME) server.c




