[EMAIL PROTECTED] writes: > Is there a way to store all the environment variables in gmake so that i > can check for the same while running gmake the second time.
Starting from GNU make 3.80 special variable .VARIABLES is available which expands to a list of all variables defined to this point. Using $(origin ) function you can narrow this list to environment variables only. Then you can save their names and values (or hash sum) to a file... -boris _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/help-make
