#
# PCN System
# Authors:     Steve Tuecke and Ian Foster
#              Argonne National Laboratory
#
# Please see the DISCLAIMER file in the top level directory of the
# distribution regarding the provisions under which this software
# is distributed.
#
# docs/Makefile
#

INSTALL_DOCS_DIR=/usr/local/pcn_2.0/docs
G_CP=/bin/cp
G_CHMOD=/bin/chmod
G_FILE_MODE=644
G_DIR_MODE=755

INSTALL_FILES = \
		README \
		host-control.ps \
		host-control.tar \
		pcn_prog_v2.0.ps \
		pcn_prog_v2.0.tar \
		sci_prog.ps

install:
	for i in $(INSTALL_FILES) ; do \
	    $(G_CP) $${i} $(INSTALL_DOCS_DIR)/. ; \
	    $(G_CHMOD) $(G_FILE_MODE) $(INSTALL_DOCS_DIR)/$${i} ; \
	done

