# Make file for server. SRC=svr.c CC=gcc all: svr svr : svr.c $(CC) -o svr $(SRC) clean : rm -f svr