# Set this to your C compiler
CC=gcc

# These are flags to pass to the compiler/linker.
CFLAGS=-O2

# Library flags -- sockets (and sometimes associated libraries
# are needed.
#Solaris:
LIBRARY_FLAGS= -lsocket -lnsl
#Linux:
#LIBRARY_FLAGS=

#################################################################
# Do not edit below this line


default:
	$(CC) $(CFLAGS) -o jserv jserv.c $(LIBRARY_FLAGS)

clean:
	rm -f *.o jserv
