-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileStructure.html
28 lines (28 loc) · 1.33 KB
/
FileStructure.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html><head><title>MugOS Path Structure</title><style>* {color: #f0f0ff;background-color: #000000;font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}pre {font-family: monospace;font-size: xx-large;}a {color: #c155ff;font-size: x-large;}</style></head> <body>
<h1>MugOS Path Structure</h1>
<pre>
src: <!-- Main folder where all files are located -->
|---Compiler <!-- All compiler related stuff -->
| |---Makefile.objs <!-- Create tiny c compiler to be able to compile the code -->
|
|---Kernel (<a href="https://github.com/Mug-OS/MugKernel">repo</a>) <!-- All kernel related stuff -->
| |---objects <!-- All object files resulted from the makefile -->
| | |
| |
| |---src <!-- All the source code -->
| | |---Drivers <!-- All drivers related stuff -->
| |
| |---Makefile.objs <!-- Instructions to compile kernel -->
|
|---GUI (<a href="https://github.com/Mug-OS/MugGUI">repo</a>) <!-- All Graphics related stuff -->
| |---objects <!-- All object files resulted from the makefile -->
| | |
| |
| |---src <!-- All the source code -->
| | |
| |
| |---Makefile.objs <!-- Instructions to compile GUI -->
|
|---Programs (<a href="https://github.com/Mug-OS/MugPrograms">repo</a>) <!-- All Native MugOS programs -->
|
</pre></body></html>