Manage Environments - simplify Make #38
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
this PR updates the Environment management processes for the platforms using this code.
The responsibility for setting environment variables is fully put onto the environment setup, with no changes in any
Makefile
instances. This simplifies theMakefile
s and puts all of the platform specific code in one place per platform.The requirements are for
LD_LIBRARY_PATH
,LDFLAGS
,FCFLAGS
&FC
to be provided to enable all builds on the platform
this change makes it slightly clearer to add a new platform, as evidenced by the azSpice addition
this change should also simplify addressing #34 & #37
it does not address #35, which is addressed within #36 (as yet unmerged)