I've a makefile where all the environment variables are defined (top directory) and I want to use some of these variables in a shell script present at innermost level.
How should I access those variables in the script? Do I need to IPC for passing the variables or is there any other method to do the same?
If
make
exports the variables, you can use them right away (but note that changes to shell variables will not change themake
variables). If you use GNU make, you can use theexport
directive.If
make
does not export the variable, you can use the shell's one-shot assignment, like inLike Jens said is correct, export make variables can be used. But his solution is not working for me. So what you can also do is just export them in the makefile: