Peter J Schmitt <[EMAIL PROTECTED]> writes: > The syntax looks something like > parallel:=CC=mpicc > serial:=CC=gcc
In GNU make it is called target-specific variables (described in Variables sections of GNU make manual) and looks like this: parallel: CC=mpicc serial: CC=gcc -boris _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/help-make
