# Set this to your C compiler
CC=gcc

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

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


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

clean:
	rm -f *.o jserv
