blob: 5674bb7400ad71778abc0d38b107696fdafed8d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
This program does not unfortunately use the configure script, but I have been
careful to write is as portably as possible to unix systems.
To build the software, type the following:
cd src
make depend
make
Then copy the kbs executable wherever you want.
Other or broken systems
=======================
If the Makefile is not usable on your system, you simply need to compile all
the .c files and produce a single kbs object. E.g. (using the cc command
as an example):
cd src
cc -o casm *.c
|