mirror of
https://github.com/sigmasternchen/seaboot
synced 2025-03-15 04:08:54 +00:00
update readme
This commit is contained in:
parent
1ad475fdde
commit
79ba669ede
1 changed files with 27 additions and 2 deletions
29
README.md
29
README.md
|
@ -1,2 +1,27 @@
|
|||
# seaboot
|
||||
Bootstrap C-projects
|
||||
# seaboot - Bootstrap C-Projects
|
||||
|
||||
## What is this?
|
||||
Another library to simplify developement of C programs.
|
||||
|
||||
## How do I use this?
|
||||
|
||||
Make sure you got autotools installed.
|
||||
|
||||
First update the generated configuration files
|
||||
|
||||
```bash
|
||||
$ autoreconf --install
|
||||
```
|
||||
|
||||
Then run the `./configure` script:
|
||||
|
||||
```bash
|
||||
$ ./configure
|
||||
```
|
||||
|
||||
The last step is to build both the library and the example program.
|
||||
```bash
|
||||
$ make
|
||||
```
|
||||
|
||||
The compiled files are in `./bin/`.
|
||||
|
|
Loading…
Reference in a new issue