- Timestamp:
- Mar 11, 2001, 5:45:28 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/configure.cmd
r5229 r5296 1 /* $Id: configure.cmd,v 1.1 6 2001-02-21 07:57:09bird Exp $1 /* $Id: configure.cmd,v 1.17 2001-03-11 16:45:28 bird Exp $ 2 2 * 3 3 * Configuration script. 4 4 * Generates makefile.inc and an empty .depend file. 5 5 * 6 * Copyright (c) 1999-200 0knut st. osmundsen (knut.stange.osmundsen@mynd.no)6 * Copyright (c) 1999-2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no) 7 7 * 8 8 * Project Odin Software License can be found in LICENSE.TXT … … 23 23 24 24 /* delete old target files */ 25 /* This keeps spoiling things!26 call SysFileDelete '.depend'; */27 25 call SysFileDelete sIncFile; 28 29 /* create empty .depend file */30 /* This keeps spoiling things!31 call lineout '.depend', '# Run nmake dep'32 call lineout '.depend'33 */34 26 35 27 /* open target file */ … … 85 77 call lineout sIncFile, '################################################################################' 86 78 sVA = Value('CPPMAIN',, 'OS2ENVIRONMENT'); /* no sure if CPPMAIN or CPPLOCAL is the one to search... */ 87 if sVA = ''then79 if (sVA = '') then 88 80 sVA = SearchPaths('PATH', 'icc.exe', 'BOOKSHELF', '..\bin\icc.exe', 'Path to IBM VisualAge for C++ or IBM C and C++ Compilers, and set its environment you compile:'); 89 81 call lineout sIncFile, 'VACPATH =' sVA … … 110 102 * Create output directories. 111 103 */ 112 ' mkdir Bin > nul 2> nul'113 ' mkdir Bin\Release > nul 2> nul'114 ' mkdir Bin\Debug > nul 2> nul'104 '@mkdir Bin > nul 2> nul' 105 '@mkdir Bin\Release > nul 2> nul' 106 '@mkdir Bin\Debug > nul 2> nul' 115 107 116 ' mkdir List > nul 2> nul'117 ' mkdir List\Release > nul 2> nul'118 ' mkdir List\Debug > nul 2> nul'108 '@mkdir List > nul 2> nul' 109 '@mkdir List\Release > nul 2> nul' 110 '@mkdir List\Debug > nul 2> nul' 119 111 120 ' mkdir Object > nul 2> nul'121 ' mkdir Object\Debug > nul 2> nul'122 ' mkdir Object\Release > nul 2> nul'112 '@mkdir Object > nul 2> nul' 113 '@mkdir Object\Debug > nul 2> nul' 114 '@mkdir Object\Release > nul 2> nul' 123 115 124 116 /* 125 117 * Display output. 126 118 */ 127 if ( fInteractive = 1) then119 if (0 /*fInteractive = 1*/) then /* currently disabled since we're now called from mail config. */ 128 120 do 129 121 say 'Configuration completed!'
Note:
See TracChangeset
for help on using the changeset viewer.