1
0
Fork 0

Add information for invoking `make'

* README.md (Building): Add section.
* configure.ac: Output message after configuration instructing the
    user to invoke `make'.
master
Mike Gerwitz 2017-09-06 14:18:02 -04:00
parent a786605635
commit 7a16f8b295
2 changed files with 14 additions and 0 deletions

View File

@ -33,6 +33,17 @@ repository; you may generate the script by issuing the following command:
You may then see `./configure --help` for more information.
## Building
If `configure` is not available, see the section "Configuring" above.
```
$ ./configure # see --help for optional arguments
$ make # build
$ make check # run test cases
```
## Documentation
Compiled documentation for the latest release is available via our GitLab
mirror, which uses the same build pipeline as we do on our internal GitLab

View File

@ -83,3 +83,6 @@ AC_CONFIG_FILES([bin/server],
[chmod +x bin/server])
AC_OUTPUT
AC_MSG_NOTICE([You may now invoke \`make' to build.])