mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
35 lines
464 B
Markdown
35 lines
464 B
Markdown
# Fennix
|
|
|
|
Opeating System from scratch made in C and C++
|
|
|
|
---
|
|
|
|
#### How to compile & run
|
|
|
|
- Clone repo using:
|
|
```bash
|
|
git clone --recurse-submodules https://github.com/Fennix-Project/Fennix.git
|
|
```
|
|
|
|
- Build the cross-compiler and other tools:
|
|
```bash
|
|
make tools
|
|
```
|
|
|
|
- Compile using:
|
|
```bash
|
|
make build
|
|
```
|
|
|
|
- Run using:
|
|
```bash
|
|
make run
|
|
```
|
|
|
|
- Clean using:
|
|
```bash
|
|
make clean
|
|
```
|
|
|
|
More info about compiling and running [here](https://fennix.enderice2.software/).
|