From 09f88206b02c6b2fe77258dee0dbdf49e59ded5d Mon Sep 17 00:00:00 2001 From: Jason Self Date: Fri, 22 Mar 2019 10:30:11 -0700 Subject: [PATCH] Update documentation and build.sh to use my version of Inform --- README | 9 ++++++--- build.sh | 5 ++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README b/README index 41c3e8e..e41b31b 100644 --- a/README +++ b/README @@ -4,13 +4,16 @@ standard library: 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: - 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. diff --git a/build.sh b/build.sh index d674e2d..a0a1639 100755 --- 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/ -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 -- 2.31.1