Changeset 695 for branches/samba-3.3.x/source
- Timestamp:
- Apr 6, 2012, 7:11:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/build.cmd
r680 r695 9 9 /* version 0.3.3 from 05.11.2011 Herwig (add support for libc064) */ 10 10 /* version 0.3.4 from 23.11.2011 Herwig (simplify libc switching) */ 11 /* version 0.3.5 from 23.11.2011 Herwig (brand befor configure, if version.h is missing) */ 12 11 /* version 0.3.5 from 23.11.2011 Herwig (brand before configure, in case 12 version.h is missing) */ 13 /* version 0.3.6 from 06.04.2012 Herwig (support parallel jobs, show build 14 time upon completion) */ 15 13 16 /* load the sysfuncs if not already loaded */ 14 17 if (RxFuncQuery('SysLoadFuncs') = 1) then … … 19 22 20 23 /* init the version string (don't forget to change) */ 21 version = "0.3.5" 22 version_date = "23.11.2011" 24 version = "0.3.6" 25 version_date = "06.04.2012" 26 27 /* number of make jobs to execute at the same time */ 28 jobs = "2" 23 29 24 30 '@echo off' 25 31 parse upper arg cmdline 32 ok = time('R') 26 33 27 34 say "Samba for eCS (OS/2) build script v" || version || " from " || version_date … … 165 172 if make <> "" then do 166 173 say build_parms 167 address cmd 'make 2>&1 | tee build.log'174 address cmd 'make -j 'jobs' 2>&1 | tee build.log' 168 175 end 169 176 … … 185 192 end 186 193 /* Default exit point */ 187 say "All done." 194 reqtime = format(time('E'),,0) 195 reqmin = reqtime%60 196 reqsec = reqtime//60 197 say "All done, took "format(reqmin,,0)' min 'format(reqsec,,0)" sec." 188 198 exit 0 189 199
Note:
See TracChangeset
for help on using the changeset viewer.