-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from skni-kod/develop
It is finally happening, release 1.2 coming soon.
- Loading branch information
Showing
152 changed files
with
9,207 additions
and
869 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,4 +60,8 @@ scripts | |
docs | ||
|
||
cloc.exe | ||
cloc.bat | ||
cloc.bat | ||
.idea/vcs.xml | ||
.idea/MicrOS.iml | ||
.idea/misc.xml | ||
debug.log |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
THREADS_COUNT := 1 | ||
WORKSPACE_DIR := ${CURDIR} | ||
|
||
.PHONY: all | ||
all: | ||
# Delete old ELF and BIN files | ||
find build -iname "*.elf" -type f -delete | ||
find build -iname "*.bin" -type f -delete | ||
|
||
find environment -iname "*.elf" -type f -delete | ||
find library -iname "*.elf" -type f -delete | ||
find os -iname "*.elf" -type f -delete | ||
|
||
$(MAKE) -C os/bootloader | ||
|
||
$(MAKE) -C library | ||
|
||
for d in $(sort $(dir $(wildcard ./environment/*/))) ; do \ | ||
$(MAKE) -C $${d}; \ | ||
done | ||
|
||
$(MAKE) -C os/kernel | ||
|
||
|
||
.PHONY: clean | ||
clean: | ||
# Delete old ELF and BIN files | ||
find build -iname "*.elf" -type f -delete | ||
find build -iname "*.bin" -type f -delete | ||
|
||
find environment -iname "*.elf" -type f -delete | ||
find library -iname "*.elf" -type f -delete | ||
find os -iname "*.elf" -type f -delete | ||
|
||
$(MAKE) -C os/bootloader clean | ||
|
||
$(MAKE) -C library clean | ||
|
||
for d in $(sort $(dir $(wildcard ./environment/*/))) ; do \ | ||
$(MAKE) -C $${d} clean; \ | ||
done | ||
|
||
$(MAKE) -C os/kernel clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.