#!/bin/sh
#
# makeVersion - create the UniWorks version module
#
# modification history
# --------------------
#
# SYNOPSIS: makeVersion
#
# DESCRIPTION
# This tool writes to standard out the source code for a version.c module
# that gets linked with every UniWorks system for identification.
# This module contains the system version number and creation date in strings.
#*/

echo '/* version.c - version/date */

/* CREATED BY makeVersion ON '`date`' */

#include "UniWorks.h"
#include "version.h"

char *creationDate = "'`date`'";
char *UniWorksVersion = UNIWORKS_VERSION;
'
