summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2019-05-28 14:11:25 +0000
committerIan C <ianc@noddybox.co.uk>2019-05-28 14:11:25 +0000
commit507031a6e6379c9f809a69c7acc80f6d352f5544 (patch)
treea10b86f6dba357fb1246598d9f4c4d494a9081ed /INSTALL
parentc6556f860ffa70d309a01bd29beb8b9203430bc2 (diff)
CPC code now loads disk image contents. Directory manipulation still to do.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL27
1 files changed, 27 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..dd7b60a
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,27 @@
+
+This program does not unfortunately use the configure script, but I have been
+careful to write is as portably as possible -- it should only be using ISO C.
+
+In fact the only non-portable part is perhaps the Makefile for non UNIX-like
+systems.
+
+
+UNIX-like systems
+=================
+
+To build the software on unix, or a compatible build system (eg. cygwin),
+type the following:
+
+ make
+
+Then copy the ditool 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 ditool object. E.g. (using the cc command
+as an example):
+
+ cc -o ditool *.c