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.
#

include Makefile.config
PATCH_PERMISSIONS=scripts/patch_permissions
ID_CMD=id


default: 
	@@echo 'Run `make install` to install $(PROJECT) user data'

install: 
	@@mkdir -p --verbose $(INSTALL_DIR); \
	echo 'Installing initial user data into sandbox $(SANDBOX)'; \
	for d in $(DATA_DIRS); do \
	  echo $${d}; \
	  rsync -ar --cvs-exclude $${d} $(INSTALL_DIR); \
	done; \
	unset d; \
	if [ `id -u` = "0" ] ; then \
		echo running patch_permissions ; \
		$(SANDBOX)/$(PATCH_PERMISSIONS); \
	fi




clean:
@
