Magellan Linux

Diff of /smage/trunk/include/cmake.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3179 by niro, Mon Sep 12 09:55:09 2011 UTC revision 5866 by niro, Fri Oct 17 07:59:57 2014 UTC
# Line 130  cmake_configure() Line 130  cmake_configure()
130   fi   fi
131    
132   cmake \   cmake \
133     -DCMAKE_VERBOSE_MAKEFILE=ON \
134   -DCMAKE_BUILD_TYPE=Release \   -DCMAKE_BUILD_TYPE=Release \
135   -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} \   -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr} \
136   -DLIB_SUFFIX=${libsuffix} \   -DLIB_SUFFIX=${libsuffix} \
137   -DLIB_INSTALL_DIR=${PREFIX:-/usr}/$(mlibdir) \   -DLIB_INSTALL_DIR=${PREFIX:-/usr}/$(mlibdir) \
138   ${configure_opts} \   ${configure_opts} \
139   ${SRCDIR} \   ${SRCDIR}/${SRCSUBDIR} \
140   || die   || die
141  }  }
142    
# Line 154  cmake_src_compile() Line 155  cmake_src_compile()
155   mmake || die   mmake || die
156  }  }
157    
158    cmake_src_check()
159    {
160     #cd ${BUILDDIR}/build
161     #mmake -j1 -k check || die
162     return 0
163    }
164    
165  cmake_src_install()  cmake_src_install()
166  {  {
167   cd ${BUILDDIR}/build   cd ${BUILDDIR}/build
# Line 171  cmake_src_install() Line 179  cmake_src_install()
179   done   done
180  }  }
181    
182  export_inherits cmake src_prepare src_compile src_install  export_inherits cmake src_prepare src_compile src_check src_install

Legend:
Removed from v.3179  
changed lines
  Added in v.5866