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


1.7
date	2001.08.11.09.13.36;	author dlr;	state Exp;
branches;
next	1.6;

1.6
date	2001.06.19.23.28.58;	author dlr;	state Exp;
branches;
next	1.5;

1.5
date	2001.05.30.21.13.36;	author dlr;	state Exp;
branches;
next	1.4;

1.4
date	2001.05.16.21.46.14;	author lucas;	state Exp;
branches;
next	1.3;

1.3
date	2001.05.16.21.44.23;	author leonardr;	state Exp;
branches;
next	1.2;

1.2
date	2001.05.16.21.39.21;	author leonardr;	state Exp;
branches;
next	1.1;

1.1
date	2001.04.11.07.29.24;	author lucas;	state Exp;
branches;
next	;


desc
@@


1.7
log
@Upgrading to Turbine 3.0-dev, Fulcrum 1.0, and Torque 1.0.
@
text
@######################################################################
# -*- Makefile -*- to copy files to site directory.
#

build:
	@@echo 'Run `make install` to install the libraries'

install:
	@@lib_installer $(SANDBOX)
@


1.6
log
@Changed from Velocity release 1.2-dev to 1.1 final (built by myself).  AFAIK, fixes which necessitated 1.2-dev were rolled back into 1.1 by Geir.
@
text
@a4 4
LIB_DIR=$(SANDBOX)/site/lib
VELOCITY_JAR=velocity-1.1.jar
TURBINE_JAR=turbine-2.2-dev.jar

d9 1
a9 14
	@@if [ "x$(SANDBOX)" != "x" ]; then \
	   echo 'Installing libraries'; \
	   if [ ! -d "$(LIB_DIR)" ]; then \
	      mkdir -p "$(LIB_DIR)"; \
	      echo "Created $(LIB_DIR)"; \
	   fi; \
	   cp -fR *.jar "$(LIB_DIR)"; \
	   rm -f $(LIB_DIR)/velocity.jar; \
	   rm -f $(LIB_DIR)/turbine.jar; \
	   ( cd $(LIB_DIR) && ln -s $(VELOCITY_JAR) velocity.jar ); \
	   ( cd $(LIB_DIR) && ln -s $(TURBINE_JAR) turbine.jar ); \
	else \
	   echo 'You must install by hand.'; \
	fi
@


1.5
log
@Symlink Velocity JAR file.
@
text
@d6 1
a6 1
VELOCITY_JAR=velocity-1.2-dev.jar
d20 1
@


1.4
log
@fixed creation of symlink
@
text
@d6 1
d21 2
a22 1
       ( cd $(LIB_DIR) && ln -s $(TURBINE_JAR) turbine.jar ); \
@


1.3
log
@Remove any existing symlink.
@
text
@d20 1
a20 1
	   ln -s $(LIB_DIR)/$(TURBINE_JAR) $(LIB_DIR)/turbine.jar; \
@


1.2
log
@Added LIB_DIR constant and symlink of turbine-[version].jar to turbine.jar.
- dlr@@collab.net
@
text
@d19 1
@


1.1
log
@adding turbine to the sandbox
@
text
@d5 3
d14 3
a16 3
	   if [ ! -d $(SANDBOX)/site/lib ]; then \
	      mkdir -p $(SANDBOX)/site/lib; \
	      echo "Created $(SANDBOX)/site/lib"; \
d18 2
a19 1
	   cp -fR *.jar $(SANDBOX)/site/lib; \
@

