1
1
mirror of https://github.com/sdiehl/wiwinwlh.git synced 2024-10-03 23:18:01 +03:00

Add steps on Stack/Cabal install prior to make

Because it might be not obvious for a newcomer
This commit is contained in:
Victor Zagorodny 2021-03-31 15:50:56 +03:00 committed by GitHub
parent 7d84f84b2b
commit 0f6725fee4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,9 +91,18 @@ If you'd like to build the documents locally you'll need to compile the
preprocessor run either use Nix, Stack or Cabal to compile the preprocessor
executable in the cabal file.
Stack:
```bash
$ stack exec make # Stack
$ cabal exec make # Cabal
$ stack install
$ stack exec make
```
Cabal:
```bash
$ cabal install
$ cabal exec make
```
For Nix: