|
NCBI Home IEB Home C++ Toolkit docs C Toolkit source browser C Toolkit source browser (2) |
NCBI C++ Toolkit Cross ReferenceC++/compilers/msvc800_prj/make_ncbi.bat |
source navigation diff markup identifier search freetext search file search |
1 @ECHO OFF 2 REM $Id: make_ncbi.bat 141043 2008-09-23 18:27:03Z ivanov $ 3 REM =========================================================================== 4 REM 5 REM PUBLIC DOMAIN NOTICE 6 REM National Center for Biotechnology Information 7 REM 8 REM This software/database is a "United States Government Work" under the 9 REM terms of the United States Copyright Act. It was written as part of 10 REM the author's official duties as a United States Government employee and 11 REM thus cannot be copyrighted. This software/database is freely available 12 REM to the public for use. The National Library of Medicine and the U.S. 13 REM Government have not placed any restriction on its use or reproduction. 14 REM 15 REM Although all reasonable efforts have been taken to ensure the accuracy 16 REM and reliability of the software and data, the NLM and the U.S. 17 REM Government do not and cannot warrant the performance or results that 18 REM may be obtained by using this software or data. The NLM and the U.S. 19 REM Government disclaim all warranties, express or implied, including 20 REM warranties of performance, merchantability or fitness for any particular 21 REM purpose. 22 REM 23 REM Please cite the author in any work or product based on this material. 24 REM 25 REM =========================================================================== 26 REM 27 REM Author: Vladimir Ivanov 28 REM 29 REM Configure/build/check NCBI C++ core tree in specified configuration(s) 30 REM 31 REM make_ncbi.bat <configure|build|make|check> <static|dll> <32|64> [cfgs..] 32 REM 33 REM %1% - Configure, build, check or build and configure (make) build tree. 34 REM %2% - Type of used libraries (static, dll). 35 REM %3% - This parameter is ignored on MSVC7, should be "32" always. 36 REM %4% - Configuration name(s) 37 REM (ALL, Debug, DebugDLL, DebugMT, Release, ReleaseDLL, ReleaseMT). 38 REM By default build all possible configurations (ALL). 39 REM 40 REM =========================================================================== 41 42 43 IF _%2 == _dll GOTO DLL 44 45 :STATIC 46 @call make.bat %1 ncbi_cpp %2 %3 %4 %5 %6 %7 %8 %9 47 EXIT %ERRORLEVEL% 48 49 :DLL 50 @call make.bat %1 ncbi_cpp_dll %2 %3 %4 %5 %6 %7 %8 %9 51 EXIT %ERRORLEVEL%
|
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |