head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


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


desc
@@


1.1
log
@initial
@
text
@######################################################################
# -*- Makefile -*- to copy files to site directory.
#
SQL_DIR=org/tigris/nidaba
INSTANCE=nidaba

build:
	@@echo 'Run `make install` to install the $(INSTANCE) SQL files'

install:
	@@if [ $(SANDBOX) != "" ]; then \
	   echo 'Installing $(INSTANCE) SQL files'; \
	   if [ ! -d $(SANDBOX)/site/sql/$(INSTANCE) ]; then \
	      mkdir -p $(SANDBOX)/site/sql/$(INSTANCE); \
	      echo "Created $(SANDBOX)/site/sql/$(INSTANCE)"; \
	   fi; \
	   cp -fR $(SQL_DIR)/* $(SANDBOX)/site/sql/$(INSTANCE); \
	else \
	   echo 'You must install by hand.'; \
	fi
@
