#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2003 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#
# 
# Sample Makefile for use on Solaris / other UNIX systems.
# Before use, please set the environment variable PATHWAY_PRODUCT_ROOT
# to refer to the root of the Pathway product installation.
#
#**********************************************************************#

Targets =					\
		ACCTBean.class			\
		ACCTSample.class

.SUFFIXES:      .java .class

.java.class:
	javac -classpath $(PATHWAY_PRODUCT_ROOT)/lib/pathway_bean.jar:$(PATHWAY_PRODUCT_ROOT) $*.java

all: $(Targets)

clean:
	@-rm -f *class
