# This is the minimum Makefile necessary to include this directory
# in the package distribution build process

# Succeed at the default target
all:
distclean:
clean:
install:

# Copy this directory to the distribution build directory
distdir:
	cp -rp . $(distdir)
	rm -rf $(distdir)/CVS $(distdir)/Makefile
