head	1.1;
access;
symbols
	TIGRIS_1_0_5:1.1
	TIGRIS_1_0:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	2001.01.07.19.30.00;	author jrobbins;	state Exp;
branches;
next	;


desc
@@


1.1
log
@added needed makefiles and standrad dirs
@
text
@######################################################################
# -*- Makefile -*- developed for a Unix system.
# 
#  This cooks the templates (if necessary), and copies them into the 
#  installation location.
# $Id: Makefile,v 1.1 2000/12/08 03:05:37 jrobbins Exp $

include Makefile.config

build:
	@@echo "Run 'make install' to install html files"

install:
	@@mkdir -p --verbose $(INSTALL_DIR); \
	echo 'Copying html files'; \
	for dir in * ; do \
	  if [ $${dir} != "CVS" ] ; then \
            rsync -ar --cvs-exclude $${dir} \
	          $(SANDBOX)/data/helm/htdoc; \
	  fi ; \
	done ; \
        echo "Done copying html";


# Clean target
#
.PHONY: clean
clean:

@
