-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename INSTALL to BUILD.md
- Loading branch information
Showing
2 changed files
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
### 1. If building from git (not needed for release tarballs): | ||
Generate build system files (requires autoconf from autotools). | ||
```bash | ||
./autogen.sh | ||
``` | ||
|
||
### 2. Generate makefiles | ||
```bash | ||
./configure | ||
``` | ||
> Run ./configure --help to see configuration options. | ||
### 3. Build executables | ||
``` | ||
make | ||
``` | ||
|
||
### 4. Install executables and manual pages (optional) | ||
```bash | ||
make install | ||
``` | ||
> If you are on a system directory, don't forget to add ``sudo``. |