ENH: Use ${MAKE} instead of make for dependent library rules

This commit is contained in:
Amitha Perera 2001-06-27 12:09:56 -04:00
parent 7eb2940eed
commit cdb3f325b5
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
// put out a rule to build the library if it does not exist
fout << libpath.c_str()
<< ":\n\tcd " << cacheValue
<< "; make " << m_LibraryOutputPath << library.c_str() << "\n\n";
<< "; ${MAKE} " << m_LibraryOutputPath << library.c_str() << "\n\n";
}
}
}