Update version to 1.95. Add more early version documentation.

This commit is contained in:
David Brown 2016-06-18 16:38:42 +01:00
parent f828e80e56
commit 342d883d11
9 changed files with 467 additions and 26 deletions

View file

@ -8,7 +8,7 @@
// Derived from vocparam.c originally by J. Templ 23.6.95
#define O_VER 1.2 // Version number to be reported by compiler.
#define O_VER 1.95 // Version number to be reported by compiler.
#define O_NAME voc // Compiler name used for binary, install dir and references in text.
// #define LARGE // Define this to get 32 bit INTEGER and 64 bit longints even on 32 bit platforms.

View file

@ -150,6 +150,16 @@ testtools:
# installable: Check for access to the installation directory
installable:
@rm -rf "S(INSTALLDIR)/test-access-qqq"
@if ! mkdir -p "$(INSTALLDIR)/test-access-qqq";then echo Cannot write to install directory, please use sudo or run as root/administrator; exit 1;fi
@rm -rf "S(INSTALLDIR)/test-access-qqq"
# install: Use only after a successful full build. Installs the compiler
# and libraries in /opt/$(ONAME).
# May require root access.
@ -365,8 +375,3 @@ auto:
@make -f src/tools/make/vishap.make -s assemble
@make -f src/tools/make/vishap.make -s testtools
while cmd=$$(./testclient -w "$(FLAVOUR)"); do $$cmd 2>&1 | ./testclient -s "$(FLAVOUR)"; done