#			PCN Release 2.0
#
# PCN System
#
# Please see the DISCLAIMER file in the top level directory of the
# distribution regarding the provisions under which this software
# is distributed.
#
# Makefile
#
# For installation instructions, please refer to the INSTALL file.
#
#     YOU SHOULD NOT NEED TO MODIFY ANYTHING IN THIS FILE
# 

clean:
	find . -name "*~" -print -exec rm {} \;

find_clean:
	find . -name "*~" -print -exec rm {} \;

realclean:	clean
	rm -rf Build

force:

install:	force



TAR_STUFF = \
	BUGS \
	CHANGES \
	DISCLAIMER \
	HELP \
	INSTALL \
	Makefile \
	README \
	RELEASE_NOTES \
	configure \
	configs \
	support \
	src \
	scripts \
	docs \
	examples \
	man \
	tests \
	contrib

tar:
	rm -f pcn.tar.Z
	tar cf - $(TAR_STUFF) | compress > pcn.tar.Z
