# C compiler specification # CC = gcc # # C optimization, only one CFLAGS line should be uncommented # The -Xcpluscomm flags is required for the SGI cc compiler to recognize the C++ # style comments ( // ) used in the code. # CFLAGS = -g gettcprtt.o: gettcprtt.c Makefile ${CC} ${CFLAGS} -c -o gettcprtt.o gettcprtt.c # # Type: make clean # to remove executables, core files, object files, et cetera # clean: rm -f server client *.o *~ core