Update files

This commit is contained in:
Alex 2022-10-08 04:33:56 +03:00
parent d76f0deca1
commit a184a7f954
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
9 changed files with 64 additions and 1 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
out
*.map
*.o

5
Audio/Makefile Normal file
View File

@ -0,0 +1,5 @@
build:
clean:

View File

@ -0,0 +1,10 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"debug.allowBreakpointsEverywhere": true
}
}

5
FileSystem/Makefile Normal file
View File

@ -0,0 +1,5 @@
build:
make --quiet -C ext2 build
clean:
make -C ext2 clean

5
FileSystem/ext2/Makefile Normal file
View File

@ -0,0 +1,5 @@
build:
clean:

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
build:
mkdir -p out
touch out/dummy.drv
make --quiet -C Audio build
make --quiet -C FileSystem build
make --quiet -C Video build
prepare:
$(info Nothing to prepare)
clean:
rm -rf out
make -C Audio clean
make -C FileSystem clean
make -C Video clean

View File

@ -1 +1,11 @@
# Drivers
# Drivers
Drivers for [Fennix](https://github.com/Fennix-Project/Fennix).
---
Use `Fennix` repo to build the operating system.
```bash
git clone --recurse-submodules https://github.com/Fennix-Project/Fennix.git
```

View File

@ -0,0 +1,5 @@
build:
clean:

5
Video/Makefile Normal file
View File

@ -0,0 +1,5 @@
build:
make --quiet -C Framebuffer build
clean:
make -C Framebuffer clean