head     1.1;
access   ;
symbols  ;
locks    sarah:1.1; strict;
comment  @# @;


1.1
date     89.07.20.12.45.15;  author sarah;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#!/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;
'
@
