head	1.6;
access;
symbols
	TIGRIS_0_9_2_4:1.5
	TIGRIS_0_9_2_3:1.5
	TIGRIS_0_9_2:1.5.0.2
	TIGRIS_0_9_0:1.4.0.4
	TIGRIS_0_8_4:1.4.0.2
	EYEBROWSE_WM_0_89:1.4
	start:1.1.1.1
	ms:1.1.1;
locks; strict;
comment	@# @;


1.6
date	2001.02.06.13.10.29;	author ms;	state dead;
branches;
next	1.5;

1.5
date	2001.01.06.03.02.37;	author ms;	state Exp;
branches;
next	1.4;

1.4
date	2000.10.14.01.28.53;	author dlr;	state Exp;
branches
	1.4.4.1;
next	1.3;

1.3
date	2000.10.12.19.15.32;	author ms;	state Exp;
branches;
next	1.2;

1.2
date	2000.10.11.18.38.58;	author ms;	state Exp;
branches;
next	1.1;

1.1
date	2000.09.27.00.29.50;	author ms;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2000.09.27.00.29.50;	author ms;	state Exp;
branches;
next	;

1.4.4.1
date	2001.01.07.21.31.20;	author ms;	state Exp;
branches;
next	;


desc
@@


1.6
log
@two more Makefiles to the garbage
@
text
@###########################################################
##	Simple makefile to copy eyebrowse.jar into sandbox
###########################################################
default:
	echo 'Eyebrowse JARs are in the lib directory'

JARS = eyebrowse.jar log4j.jar

install:
	@@if [ -d "$(SANDBOX)/site/lib" ]; then \
		for jar in `ls *.jar`; do \
	   	    cp -f $${jar} $(SANDBOX)/site/lib/; \
		done; \
	else \
		echo 'Install location is known only for Tigris instances'; \
	        echo 'Deploy the Eyebrowse JARs manually'; \
	fi
@


1.5
log
@log4j.jar are the classes for the log4j logging api.
makefile changes to install it.
@
text
@@


1.4
log
@Cleaned up Makefile.
- Use inheritted environemnt through Makefile vars.
- Reduced number of targets.
@
text
@d7 2
d10 4
a13 2
	@@if [ -d $(SANDBOX)/site/lib ]; then \
		cp eyebrowse.jar $(SANDBOX)/site/lib/eyebrowse.jar; \
@


1.4.4.1
log
@Updating branch to match updates in head
@
text
@a6 2
JARS = eyebrowse.jar log4j.jar

d8 2
a9 4
	@@if [ -d "$(SANDBOX)/site/lib" ]; then \
		for jar in `ls *.jar`; do \
	   	    cp -f $${jar} $(SANDBOX)/site/lib/; \
		done; \
@


1.3
log
@Small fix.
Submitted by:	Michael Salmon
@
text
@d4 2
a5 1
default: nothing
d7 3
a9 6
nothing:
	ls -la $$SANDBOX/site/lib/eyebrowse.jar

install: nothing
	@@if [ -d $${SANDBOX}/site/lib ]; then \
		cp eyebrowse.jar $$SANDBOX/site/lib/eyebrowse.jar; \
d11 2
a12 2
		echo "You are not running in a sandbox so you "; \
		echo "must install eyebrowse.jar by hand "; \
@


1.2
log
@Fixed Makefile to install properly via optional environment settings.
Submitted by:	Michael Salmon
@
text
@d12 1
a12 3
	fi
fuck:
	else; \
@


1.1
log
@Initial revision
@
text
@d7 1
a7 1
	echo $$SANDBOX/site/lib	
d9 9
a17 7
install:
	@@if [ $$SANDBOX != "" ]; then \
		cp eyebrowse.jar $$SANDBOX/site/lib; \
	else \
		echo; \
		echo "You are not running in a sandbox so you must install eyebrowse.jar by hand "; \
	fi;
@


1.1.1.1
log
@Adding lib/* to eyebrowse CVS-tree
Submitted by:	Michael Salmon
Reviewed by:	Michael Stack
@
text
@@
