Added version number to binary
This commit is contained in:
parent
4a1f9bbc22
commit
aaea752423
3 changed files with 11 additions and 2 deletions
|
@ -32,3 +32,4 @@ scan.c
|
||||||
skip.c
|
skip.c
|
||||||
tokenname.c
|
tokenname.c
|
||||||
cpp.6
|
cpp.6
|
||||||
|
Version.c
|
||||||
|
|
|
@ -41,10 +41,10 @@ LOBJ = tokenfile.o expression.o Lpars.o
|
||||||
|
|
||||||
# Objects of hand-written C files
|
# Objects of hand-written C files
|
||||||
CSRC = LLlex.c LLmessage.c ch7bin.c ch7mon.c domacro.c \
|
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
|
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 \
|
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
|
preprocess.o replace.o scan.o skip.o tokenname.o next.o expr.o
|
||||||
|
|
||||||
PRFILES = Makefile Parameters \
|
PRFILES = Makefile Parameters \
|
||||||
|
|
8
util/cpp/Version.c
Normal file
8
util/cpp/Version.c
Normal 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
|
Loading…
Reference in a new issue