# file.make
# $Id: Makefile,v 1.2 1999/02/18 09:10:13 lehors Exp $
# COPYRIGHT

# This makefile should be TOP=../../
TOP=../
included in all leaves packages directory. It uses
# the FILES variable to know what are the files to be compiled.
# For example, if you have a package 'foo' containing 'a.java' and 'b.java'
# your Makefile should look like this:
# ----------
# PACKAGE=foo
# FILES=a.java b.java
# include $(TOP)/makefiles/files.make
# ----------
#
# This file defines the following targets:
# all:	 to build the class files from the java files.
# clean: to clean all sub packages
# doc:   to build the appropriate documentation files from the source
# The 'doc' target uses DESTDIR variable that should point to the absolute 
# path of the target directory (in which doc files will be created).

PACKAGE="w3c.fetcher"

FILES = \
	Time.java \
	Logger.java \
	URLTest.java \
	URLList.java \
	URLGenerator.java \
	URLFetcher.java \
	TagParser.java \
	Main.java

include $(TOP)/makefiles/file.make

