Skip to content

Commit

Permalink
README.md: Document the build dependencies and build instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdunn committed Sep 25, 2013
1 parent c62aa59 commit b4136d6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
@@ -1,5 +1,8 @@
# Klatt Cascade-Parallel Formant Synthesizer

- [Build Dependencies](#build-dependencies)
- [Debian](#debian)
- [Building](#building)
- [Modifications](#modifications)
- [Input File Format](#input-file-format)
- [Command Line Options](#command-line-options)
Expand All @@ -23,6 +26,29 @@ modern C compilers and systems by Reece H. Dunn.
In terms of the two articles referred to above, this version seems to
be the mid point of the development between the two systems described.

## Build Dependencies

In order to build Klatt, you need:

1. a functional autotools system (`make`, `autoconf` and `automake`);
2. a functional c compiler.

### Debian

| Dependency | Install |
|------------|-----------------------------------------------|
| autotools | `sudo apt-get install make autoconf automake` |
| c compiler | `sudo apt-get install gcc` |

## Building

Klatt uses a standard autotools build setup. Simply run:

$ ./autogen.sh
$ ./configure --prefix=/usr
$ make
$ sudo make install

## Modifications

The main part of the code in this directory was posted to comp.speech
Expand Down

0 comments on commit b4136d6

Please sign in to comment.