head	1.1;
access;
symbols
	JSERV_0_10_PREVIEW:1.1.0.6
	JSERV_0_9_11:1.1.0.4
	JSERV_0_9_12:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	98.04.02.01.25.23;	author ed;	state Exp;
branches;
next	;


desc
@@


1.1
log
@This is a simple way to use JServ, which connects the webserver with the
Java VM via a CGI.
@
text
@# Set this to your C compiler
CC=gcc

# Flags to pass to the linker. Include any neccessary libraries
# These libraries are for Solaris 2:
LDFLAGS=-lsocket -lnsl

# These are flags to pass to the compiler
CFLAGS=-Wall -g

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


default:
	$(CC) $(CFLAGS) $(LDFLAGS) -o servlet.cgi servlet.c

clean:
	rm -f *.o servlet.cgi
@


