From f1803a2f16013b093058424c58a3a1d164d29905 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Sun, 12 Aug 2018 21:30:11 +0200 Subject: [PATCH] Small fixes to gf-developers document --- doc/gf-developers.t2t | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/gf-developers.t2t b/doc/gf-developers.t2t index 7bd3196b8..dbc7fe960 100644 --- a/doc/gf-developers.t2t +++ b/doc/gf-developers.t2t @@ -178,7 +178,6 @@ case, all you need to do to compile and install GF, after downloading the source code as described above, is ``` -$ cd GF $ cabal install ``` @@ -419,20 +418,21 @@ As of 2018-07-26, the RGL is distributed separately from the GF compiler and run === Simple === To install the RGL, you can use the following commands from within the ``gf-rgl`` repository: ``` -make install +$ make install ``` There is also ``make build``, ``make copy`` and ``make clean`` which do what you might expect. === Advanced === +For advanced build options, call the Haskell build script directly: ``` -runghc Make.hs ... +$ runghc Make.hs ... ``` For more details see the [README https://github.com/GrammaticalFramework/gf-rgl/blob/master/README.md]. === Haskell-free === -``` -./Make.sh -``` +If you do not have Haskell installed, you can use the simple build script ``Make.sh`` +(or ``Make.bat`` for Windows). + == Creating binary distribution packages ==