/*
** CBLM
** $Id: DIST,v 1.1 2006/05/02 02:45:41 sella Exp $
** Copyright (c) 2001-2004 Digital Genesis Software. All Rights Reserved.
** Released under the GPL Version 2 License.
** http://www.digitalgenesis.com
*/

NOTE: These instructions are for a developer building a distribution archive.

Assume we are starting within the users home directory.

> cd ~

Perform a clean checkout skipping empty directories.

> cvs checkout -P cblm

Update the version number and release dates within the files:

> cd cblm
> vi README ChangeLog INSTALL man/cblmd.1.in html/config/config.conf.in

Refresh autotools build system.

> ./autogen.sh

Run configure and build (to verify proper build of source)

> ./configure
> make all

Commit our changes.

> cvs commit

Cleanup distribution

> make distclean

Build distribution archives.

> make dist-gzip
> make dist-bzip2

Perform tests on the tarball. If the release is clean, then mark the version within CVS. For example:

cd ~/cblm
cvs tag cblm-2_9_0 

