#  (c) Copyright 1997, KL GROUP INC.  
#  ALL RIGHTS RESERVED 
# 
#  This file is provided for demonstration and educational uses only.
#  Permission to use, copy, modify and distribute this file for
#  any purpose and without fee is hereby granted, provided that the
#  above copyright notice and this permission notice appear in all
#  copies, and that the name of KL Group not be used in advertising
#  or publicity pertaining to this material without the specific,
#  prior written permission of an authorized representative of
#  KL Group.
# 
#  KL GROUP MAKES NO REPRESENTATIONS AND EXTENDS NO WARRANTIES, EX-
#  PRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE, INCLUDING, BUT
#  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
#  FITNESS FOR ANY PARTICULAR PURPOSE, AND THE WARRANTY AGAINST IN-
#  FRINGEMENT OF PATENTS OR OTHER INTELLECTUAL PROPERTY RIGHTS.  THE
#  SOFTWARE IS PROVIDED "AS IS", AND IN NO EVENT SHALL KL GROUP OR
#  ANY OF ITS AFFILIATES BE LIABLE FOR ANY DAMAGES, INCLUDING ANY
#  LOST PROFITS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES 
#  RELATING TO THE USE OF THIS SOFTWARE.
#
# RCSID -- $RCSfile: makefile $ $Revision: 2.0 $ $Date: 1997/06/09 19:09:59 $ $Locker: $  KL Group Inc.

TOPDIR = ../../../..

SRC =  \
main.java \
awtgui.java \
bwtgui.java

CLASSES = $(SRC:.java=.class)
TOPDIR = ../../../..

JAVAC = javac 

all: $(CLASSES)

%.class: %.java
	$(JAVAC) $<

clean:
	rm -f *.class

run:
	java main
	appletviewer index.html
