From: Jason Self Date: Fri, 22 Mar 2019 17:30:11 +0000 (-0700) Subject: Update documentation and build.sh to use my version of Inform X-Git-Url: https://jxself.org/git/?p=the-mall.git;a=commitdiff_plain;h=09f88206b02c6b2fe77258dee0dbdf49e59ded5d Update documentation and build.sh to use my version of Inform --- 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