/*
** Sella NMS
** $Id: DIST,v 2.5 2004/06/07 00:00:16 sella Exp $
** Copyright (c) 2001-2004 Digital Genesis Software. All Rights Reserved.
** Released under the GPL Version 2 License.
** http://www.digitalgenesis.com
*/


Assume we are starting within the users home directory.

> cd ~

Perform a clean checkout skipping empty directories.

> cvs checkout -P sella_nms

Update the version number within the files.

> cd sella_nms
> vi README INSTALL 

Build a new configure script.

> autoconf

Run configure, to build the Makefiles.

> ./configure

Update depenedencies.

> make depend

Commit our changes.

> cvs commit

Run contrib/scripts/makedist.sh to build the tarballs (does a distclean).

> cd ~
> sella_nms/contrib/scripts/makedist.sh sella_nms 0.3.0

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

cd ~/sella_nms
cvs tag sella_nms-0_3_0 

