Update documentation and build.sh to use my version of Inform
authorJason Self <j@jxself.org>
Fri, 22 Mar 2019 17:30:11 +0000 (10:30 -0700)
committerJason Self <j@jxself.org>
Fri, 22 Mar 2019 17:30:11 +0000 (10:30 -0700)
README
build.sh

diff --git a/README b/README
index 41c3e8edf392a7c4359c9e6e682a3de81fb0a12b..e41b31b4c4df6c1bf605aa9db12e485765265ebd 100644 (file)
--- a/README
+++ b/README
@@ -4,13 +4,16 @@ standard library:
        git submodule init
        git submodule update
 
        git submodule init
        git submodule update
 
-You will also need my modified version of the Inform compiler from 
-https://jxself.org/git/?p=inform.git
+First build the compiler:
+
+       cd inform
+       gcc *.c -o inform
+       cd ../
 
 Once the compiler has been compiled and is ready for use return to 
 this directory and run:
 
 
 Once the compiler has been compiled and is ready for use return to 
 this directory and run:
 
-       inform +include_path=lib the-mall
+       ./inform/inform +include_path=lib the-mall
 
 Or you can run the included build.sh script which does the same thing, 
 assuming that the inform compiler is included in your PATH.
 
 Or you can run the included build.sh script which does the same thing, 
 assuming that the inform compiler is included in your PATH.
index d674e2d8dcf8258273980e9213c314f571044644..a0a1639a8f4bdde4f7e9516670ef2b865d5b8ddd 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -15,4 +15,7 @@
 # You should have received a copy of the GNU Affero General Public
 # License along with this file. If not, see https://gnu.org/licenses/
 
 # You should have received a copy of the GNU Affero General Public
 # License along with this file. If not, see https://gnu.org/licenses/
 
-inform +include_path=lib the-mall
\ No newline at end of file
+cd inform
+gcc *.c -o inform
+cd ../
+./inform/inform +include_path=lib the-mall
\ No newline at end of file