blob: f6f4bb2793d929d9449efabd7b7e19b5a75c916e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Install
Since pprolog has zero dependencies other than what is available by default on 9front
it is pretty easy to install.
If you have [git9](https://orib.dev/git9.html) installed the steps are:
git/clone https://git.sr.ht/~pmikkelsen/pprolog
cd pprolog
mk install
This will install the pprolog binary to `/$objtype/bin`, so you may want to modify
`BIN` in the `mkfile` to install to somewhere else like `$home/bin/$objtype/`
It will also install the prolog libraries to `/sys/lib/prolog` and this is hardcoded
in the `mkfile` and in `dat.h` if you want to change that.
|