Add information for invoking `make'
* README.md (Building): Add section. * configure.ac: Output message after configuration instructing the user to invoke `make'.master
parent
a786605635
commit
7a16f8b295
11
README.md
11
README.md
|
@ -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
|
||||
|
|
|
@ -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.])
|
||||
|
||||
|
|
Loading…
Reference in New Issue