#!/bin/sh
#
# makeVersion - create the VxWorks version module
#
# modification history
# --------------------
# 01a,10nov87,dnw  Written
#
# SYNOPSIS: makeVersion
#
# DESCRIPTION
# This tool writes to standard out the source code for a version.c module
# that gets linked with every VxWorks 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 "vxWorks.h"
#include "version.h"

char *creationDate = "'`date`'";
char *vxWorksVersion = VXWORKS_VERSION;
char *vxWorksPlusVersion = VXWORKSPLUS_VERSION;
'
