BUG: fix build of lib.a problem

This commit is contained in:
Bill Hoffman 2000-08-31 14:26:38 -04:00
parent 382b9d0508
commit c5e7d5a796
2 changed files with 7 additions and 2 deletions

View File

@ -84,7 +84,7 @@ BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
# set up the path to the rulesgen program
CMAKE = @CMAKE_OBJ_DIR@/CMake/Source/CMakeBuildTargets
KIT_OBJ = ${SRC_OBJ} ${EXTRA_KIT_OBJ}
BUILD_LIB_FILE = lib${ME}${ITK_LIB_EXT}
# ***** BEGIN VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in **************

View File

@ -82,7 +82,12 @@ void cmUnixMakefile::OutputMakefile(const char* file)
}
fout << "\n";
}
fout << "ME = " << this->GetLibraryName() << "\n\n";
if(strlen(this->GetLibraryName()) > 0)
{
fout << "ME = " << this->GetLibraryName() << "\n\n";
fout << "BUILD_LIB_FILE = lib${ME}${ITK_LIB_EXT}\n\n";
}
for(int i =0; i < m_MakeVerbatim.size(); i++)
{
fout << m_MakeVerbatim[i] << "\n";