##############################################################################
#
# (c) Copyright 1997, KL GROUP INC.  
# ALL RIGHTS RESERVED 
#
#  THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED
# AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND
# WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE.  THIS SOFTWARE OR
# ANY OTHER COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE
# AVAILABLE TO ANY OTHER PERSON.  NO TITLE TO AND OWNERSHIP OF THE
# SOFTWARE IS HEREBY TRANSFERRED.
#
#  THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT
# NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY KL GROUP INC.
# OR ITS THIRD PARTY SUPPLIERS.
#
#  KL GROUP INC. AND ITS THIRD PARTY SUPPLIERS, ASSUME NO RESPONSIBILITY 
# FOR THE USE OR INABILITY TO USE ANY OF ITS SOFTWARE.   THIS SOFTWARE IS 
# PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, AND KL GROUP INC. EXPRESSLY 
# DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO THE 
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
# Notice:  Notwithstanding any other lease or license that may pertain to,
# or accompany the delivery of, this computer software, the rights of the
# Government regarding its use, reproduction and disclosure are as set
# forth in Section 52.227-19 of the FARS Computer Software-Restricted
# Rights clause.
#
# (c) Copyright 1997 KL Group Inc.  Unpublished - all
# rights reserved under the Copyright laws of the United States.
#
# RESTRICTED RIGHTS NOTICE:  Use, duplication, or disclosure by the
# Government is subject to the restrictions as set forth in subparagraph
# (c)(1)(ii) of the Rights in Technical Data and Computer Software clause
# at DFARS 52.227-7013.
#
# KL Group Inc.
# 260 King Street East
# Suite 300
# Toronto, Ontario
# Canada M5A 1K3
# (416) 594-1026
# (416) 594-1919 (FAX)
#
# RESTRICTED RIGHTS LEGEND:  This computer software is submitted with
# "restricted rights."  Use, duplication or disclosure is subject to the
# restrictions as set forth in NASA FAR SUP 18-52.227-79 (April 1985)
# "Commercial Computer Software- Restricted Rights (April 1985)."  KL Group
# Inc., 260 King St. E., Toronto, Ontario, Canada M5A 1K3.  If
# the contract contains the Clause at 18-52.227-74 "Rights in Data General"
# then the "Alternate III" clause applies.
#
# (c) Copyright 1997 KL Group Inc.
# ALL RIGHTS RESERVED
#
##############################################################################
# RCSID -- $RCSfile: Makefile $ $Revision: 2.1 $ $Date: 1997/11/14 13:59:55 $ $Locker: $  KL Group Inc.

SRC =  \
alignerLayout.java \
buttons.java \
checkboxes.java \
comboBox.java \
fontChooser.java \
labels.java \
lists.java \
multiColumnList.java \
outliner.java \
progressMeter.java \
scrolledWindow.java \
scrollbar.java \
slider.java \
splitterWindow.java \
spinBox.java \
tabManager.java \
text.java

110SRC = \
outlinerPreview.java \
outlinerPrint.java 

CLASSES = $(SRC:.java=.class)
110CLASSES = $(110SRC:.java=.class)

JAVAC = javac 
JAVA = java

all: $(CLASSES)

110: $(CLASSES) $(110CLASSES)

tags:
	etags $(SRC)

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

clean:
	rm -f *.class

run:
	$(JAVA) jclass.bwt.examples.alignerLayout
	$(JAVA) jclass.bwt.examples.buttons
	$(JAVA) jclass.bwt.examples.checkboxes
	$(JAVA) jclass.bwt.examples.comboBox
	$(JAVA) jclass.bwt.examples.fontChooser
	$(JAVA) jclass.bwt.examples.labels
	$(JAVA) jclass.bwt.examples.lists
	$(JAVA) jclass.bwt.examples.multiColumnList
	$(JAVA) jclass.bwt.examples.outliner
	$(JAVA) jclass.bwt.examples.progressMeter
	$(JAVA) jclass.bwt.examples.scrolledWindow
	$(JAVA) jclass.bwt.examples.scrollbar
	$(JAVA) jclass.bwt.examples.slider
	$(JAVA) jclass.bwt.examples.splitterWindow
	$(JAVA) jclass.bwt.examples.spinBox
	$(JAVA) jclass.bwt.examples.tabManager
	$(JAVA) jclass.bwt.examples.text
