-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
16 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
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,9 +1,8 @@ | ||
# Define bash as the shell to use for sub-shells. The flag --rcfile is set to | ||
# the .env file containing aliases of commands for running in docker containers. | ||
SHELL = BASH_ENV=../.devcontainer/.env /bin/bash | ||
.SHELLFLAGS = --rcfile ../.devcontainer/.env -lc | ||
# Define bash as the shell to use for sub-shells. The environment variable | ||
# $BASH_ENV points to the .env file containing aliases of commands for running | ||
# in docker containers. These aliases can then be used in recipies. | ||
SHELL = BASH_ENV=../.devcontainer/.env /bin/bash | ||
|
||
# Forward goals to sub-make. | ||
%: | ||
env | ||
@riscv_make -f makefile.sw $@ CLI_FLAGS=$(CLI_FLAGS) |