# Makefile   - Makefile for Lyngby FisWidgets
#
#      Execute 'make' in this directory to construct
#      the .class files and the lyngby.jar file.
#
# $Id: Makefile,v 1.1 2004/03/11 17:01:30 fnielsen Exp $


all: lyngby.jar ;


lyngby.jar : *.class ; 
	jar cf lyngby.jar *.class


*.class : *.java ;
	javac *.java 

