head	1.3;
access;
symbols
	TIGRIS_1_1_0RC2:1.1.14.2
	TIGRIS_1_1_0RC1:1.1.14.2
	TIGRIS_1_1:1.1.14.2.0.2
	TIGRIS_1_0_8:1.1.14.2
	TIGRIS_1_0_8RC3:1.1.14.2
	TIGRIS_1_0_8RC2:1.1.14.2
	TIGRIS_1_0_8RC1:1.1.14.2
	TIGRIS_1_0_7:1.1.14.2
	TIGRIS_1_0_7RC3:1.1.14.2
	TIGRIS_1_0_7RC2:1.1.14.2
	TIGRIS_1_0_7RC1:1.1.14.2
	TIGRIS_1_0_6:1.1.14.2
	TIGRIS_1_0_6RC5:1.1.14.2
	TIGRIS_1_0_6RC4:1.1.14.2
	TIGRIS_1_0_6RC3:1.1.14.2
	TIGRIS_1_0_6RC2:1.1.14.2
	TIGRIS_1_0_6RC1:1.1.14.2
	TIGRIS_1_0_5:1.1.14.2
	TIGRIS_1_0_5RC6:1.1.14.2
	TIGRIS_1_0_5RC5:1.1.14.2
	TIGRIS_1_0_5RC4:1.1.14.2
	TIGRIS_1_0_5RC3:1.1.14.2
	TIGRIS_1_0_5RC2:1.1.14.2
	TIGRIS_1_0_5RC1:1.1.14.2
	TIGRIS_1_0_4:1.1
	TIGRIS_1_0_3:1.1
	TIGRIS_1_0_2:1.1
	TIGRIS_1_0_1:1.1
	TIGRIS_1_0:1.1.0.14
	TIGRIS_1_0_0:1.1
	TIGRIS_1_0_0_RC1:1.1.0.10
	HELM_PEER_PORT_BRANCH:1.1.0.8
	TIGRIS_0_9_2_4:1.1
	TIGRIS_0_9_2_3:1.1
	TIGRIS_0_9_2:1.1.0.6
	TIGRIS_0_9_0:1.1.0.4
	TIGRIS_0_8_4:1.1.0.2
	TIGRIS_710_FF:1.1
	TIGRIS_706:1.1;
locks; strict;
comment	@# @;


1.3
date	2001.05.11.06.15.07;	author lucas;	state Exp;
branches;
next	1.2;

1.2
date	2001.05.09.22.37.07;	author lucas;	state Exp;
branches;
next	1.1;

1.1
date	2000.08.28.01.36.27;	author ed;	state Exp;
branches
	1.1.14.1;
next	;

1.1.14.1
date	2001.05.11.06.24.37;	author lucas;	state Exp;
branches;
next	1.1.14.2;

1.1.14.2
date	2001.05.11.06.31.54;	author lucas;	state Exp;
branches;
next	;


desc
@@


1.3
log
@ugh..  forgot to update this part
@
text
@include ../Makefile.config

default: build

build:
	@@VERSION=$(VERSION); export VERSION; \
	echo version: $${VERSION}; \
	./build.sh

clean:
	./build.sh clean

install:
	./build.sh install
@


1.2
log
@This will bring the anzu Ant files into step with the other Tigris modules.

The build-anzu.* files are now build.*.

The Makefile has a couple new targets.

The build.xml file now creates the classpath instead of having the shell script do it.

An install target was added and the clean target was fixed since the bin directory is in CVS, it shouldn't be deleted.

The ant.jar and xml.jar files have been removed since Ant is a standard part of the tigris install.
@
text
@d8 1
a8 1
	./build-anzu.sh
@


1.1
log
@handle versioning a little differently; start to add a makefile system.
@
text
@d3 2
d9 6
@


1.1.14.1
log
@backported changes from HEAD.  This brings the anzu build stuff to the same level as the rest of the modules.
@
text
@d1 1
a1 3
######################################################################
# -*- Makefile -*- developed for a Unix system.
#
d3 4
a6 63
include Makefile.config

default: build

all: clean build install

build: FORCE
	@@echo 'Building $(PROJECT)'; \
	for d in $(BUILD_DIRS); do \
	  cd $${d}; \
	  make $(TARGET); \
	  cd ..; \
	done; \
	unset d; \
	echo 'Done building $(PROJECT)'

install: install-server install-client-libs

install-client:
	@@echo 'Installing $(PROJECT)'; \
	for d in $(INSTALL_DIRS); do \
	  cd $${d}; \
	  echo $${d}; \
	  make install-client; \
	  cd .. ; \
	done; \
	unset d; \
	echo 'Done installing $(PROJECT)'

install-client-libs:
	@@echo 'Installing $(PROJECT)'; \
	for d in $(INSTALL_DIRS); do \
	  cd $${d}; \
	  echo $${d}; \
	  make install-client-libs; \
	  cd .. ; \
	done; \
	unset d; \
	echo 'Done installing $(PROJECT)'


install-server:
	@@echo 'Installing $(PROJECT) server'; \
	for d in $(SERVER_INSTALL_DIRS); do \
	  cd $${d}; \
	  echo $${d}; \
	  make install-server; \
	  cd .. ; \
	done; \
	unset d; \
	echo 'Done installing $(PROJECT) server'

clean:
	@@echo 'Clean for $(PROJECT)' ;\
	for d in $(CLEAN_DIRS); do \
	  cd $${d}; \
	  make clean; \
	  cd ..; \
	done ; \
	unset d; \
	echo 'Done cleaning $(PROJECT)'

FORCE:
@


1.1.14.2
log
@dumb copy by me
@
text
@d1 5
a5 1
include ../Makefile.config
d9 47
a55 4
build:
	@@VERSION=$(VERSION); export VERSION; \
	echo version: $${VERSION}; \
	./build.sh
d58 8
a65 1
	./build.sh clean
d67 1
a67 2
install:
	./build.sh install
@


