-
Notifications
You must be signed in to change notification settings - Fork 203
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 #2425 from nasa/integration-candidate
cFE Integration candidate for fast-tracked PRs
- Loading branch information
Showing
5 changed files
with
30 additions
and
8 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
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,5 +1,10 @@ | ||
# Rule for traditional CFE table generation via elf2cfetbl | ||
|
||
# The dependency of this target should always be an absolute pathname to | ||
# the intermediate library file as it is generated by a CMake script via | ||
# the TARGET_FILE property. Therefore, the same path should still work | ||
# after the "cd" command. The "cd" is so the ar tool writes the object file | ||
# into a separate dir, in case of similarly-named files on different cpus. | ||
elf/%: | ||
@mkdir -pv $(dir $(@)) | ||
cd $(dir $(@)) && $(AR) x $(abspath $(<)) $(notdir $(@)) | ||
@mkdir -pv "$(dir $(@))" | ||
cd "$(dir $(@))" && $(AR) x "$(<)" "$(notdir $(@))" |
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