mirror of
https://github.com/sigmasternchen/seaboot
synced 2025-03-15 20:28:55 +00:00
27 lines
442 B
Markdown
27 lines
442 B
Markdown
# 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/`.
|