forked from haileys/rustboot
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM target works except dependency info. Moved .gitignore from project root to build directories. Makefile reads patterns specified in gitignore to find all output files and remove them with the help of `find` and `xargs`. Do not overwrite dep info. Using `sed` to remove some dependency info. See http://stackoverflow.com/a/9054420 and rust-lang/rust#5870. Specified that makefiles should use bash.
- Loading branch information
Showing
3 changed files
with
28 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
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
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 |
---|---|---|
@@ -1,2 +1,11 @@ | ||
core.s | ||
*.d | ||
|
||
main.s | ||
|
||
lib*.rlib | ||
*.bc | ||
|
||
*.elf | ||
*.o | ||
*.embed | ||
*.bin |