nccmp - Compares 2 NetCDF files. 

------------------------------------------------------------------

I. Installation

  ./configure
  make
  make check
  make install
  make clean

------------------------------------------------------------------

II. Developer Tasks

1. Documenting Changes

  After making modifications to code, also update the following:

  configure.ac - Update the version number in AC_INIT.
  doc/index.html - Update version news, links and usage.

2. Packaging

  Run these commands to regenerate the autoconf scripts.
    autoreconf -i
    # Deprecated:
    # rm -rf autom4te.cache && aclocal && automake -a -c -Wno-portability && autoheader && autoconf
  
  Versions that worked:
    aclocal/automake 1.11.3
    autoheader/autoconf 2.68

  And package it up into a tarball.
    make -f Makefile.dev sdist VER=1.2.3

3. Distribution

  Add the new tarball onto SourceForge via File Releases form.

4. Update the webpage's download link in doc/index.html.
  Update the webpage:
  scp doc/index.html rsz@web.sourceforge.net:/home/groups/n/nc/nccmp/htdocs

    
