Added version number to binary

This commit is contained in:
ceriel 1989-05-29 11:17:40 +00:00
parent 4a1f9bbc22
commit aaea752423
3 changed files with 11 additions and 2 deletions

View file

@ -32,3 +32,4 @@ scan.c
skip.c
tokenname.c
cpp.6
Version.c

View file

@ -41,10 +41,10 @@ LOBJ = tokenfile.o expression.o Lpars.o
# Objects of hand-written C files
CSRC = LLlex.c LLmessage.c ch7bin.c ch7mon.c domacro.c \
error.c idf.c init.c input.c main.c options.c \
error.c idf.c init.c input.c main.c options.c Version.c \
preprocess.c replace.c scan.c skip.c tokenname.c next.c expr.c
COBJ = LLlex.o LLmessage.o ch7bin.o ch7mon.o domacro.o \
error.o idf.o init.o input.o main.o options.o \
error.o idf.o init.o input.o main.o options.o Version.o \
preprocess.o replace.o scan.o skip.o tokenname.o next.o expr.o
PRFILES = Makefile Parameters \

8
util/cpp/Version.c Normal file
View file

@ -0,0 +1,8 @@
/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#ifndef lint
static char Version[] = "ACK C preprocessor Version 1.3";
#endif lint