#*****************************************************************************#
#* File name: Makefile                                                       *#
#* Purpose: to make the util package                                         *#
#* Last modified: 26.11.98                                                   *#
#* Author: Victor Klimov, 1998                                               *#
#*                                                                           *#
#* This program is distributed in the hope that it will be useful, but       *#
#* WITHOUT ANY WARRANTY; without even the implied warranty of                *#
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General *#
#* Public License for more details.                                          *#
#*                                                                           *#
#* This software is distributed under the terms                              *#
#* of the GNU General Public License as published                            *#
#* by the Free Software Foundation; either version 2, or (at your option)    *#
#* any later version.                                                        *#
#* See file COPYING for your rights (GNU GPL)                                *#
#*****************************************************************************#

# $Header: /d/JTAR-0.2/util/RCS/Makefile,v 1.2 1998/12/10 21:05:54 root Exp $

classes = $(patsubst %.java,%.class,$(wildcard *.java))

JCLASSPATH = -classpath /usr/src/jdk1.1.3/lib/classes.zip:.:c:util:io:general

%.class : %.java
	cd ..; $(JC) $(JCFLAGS) $(JCLASSPATH) util/$^ ; cd util;

all: $(classes)

.PHONY : clean
clean:
	rm $(classes)

#*****************************************************************************#
#* End of file: Makefile                                                     *#
#*****************************************************************************#
