Installation

If building from source, the following software is required:

First, create a directory to store the extracted source files in, say, kkvcs\src:

C:\> mkdir kkvcs
C:\> cd kkvcs
C:\> mkdir src

Next, copy the zip file containing the source files to the new directory, change to that directory, and then extract the source files from the zipfile:

C:\> copy $ZIPFILE$ kkvcs\src
C:\> cd kkvcs\src
C:\> pkunzip $ZIPFILE$

Replace $ZIPFILE$ with the name of the zip file (e.g. v0_8.zip).

Then, use Turbo C to load the main C file for each utility (i.e. kkadd.c, kkcommit.c, kkdel.c, kklog.c, kkren.c, kkrevert.c) and build the executables.

NOTE that the various TC files are configured to use an 80186/80286 instruction set, as I have been primarily developing KKVCS DOS Version Control on a 286 PC (Hyundai Super286C). In Turbo C, after loading the respective TC file when building one of the utilities, please feel free to change the instruction set by selecting Options->Compiler->Code generation->Instruction Set in the top menubar to better align with your specific CPU platform; however, I would caution you against playing with the other settings that are defined in the TC files.

Building KKADD

C:\> TC KKADD.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKADD.TC.
3. In the top menubar, select Compile->Build all.

Building KKCOMMIT

C:\> TC KKCOMMIT.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKCOMMIT.TC.
3. In the top menubar, select Compile->Build all.

Building KKDEL

C:\> TC KKDEL.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKDEL.TC.
3. In the top menubar, select Compile->Build all.

Building KKLOG

C:\> TC KKLOG.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKLOG.TC.
3. In the top menubar, select Compile->Build all.

Building KKREN

C:\> TC KKREN.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKREN.TC.
3. In the top menubar, select Compile->Build all.

Building KKREVERT

C:\> TC KKREVERT.C
1. In the top menubar, select Options->Retrieve options.
2. Enter KKREVERT.TC.
3. In the top menubar, select Compile->Build all.