# Set this to your C compiler
CC=cc

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

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


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

clean:
	rm -f *.o jserv
