| OLD | NEW |
| 1 @rem default builds static library. | 1 @rem default builds static library. |
| 2 @rem you can pass the following arguments (case insensitive): | 2 @rem you can pass the following arguments (case insensitive): |
| 3 @rem - "DLL" to build a DLL instead of a static library | 3 @rem - "DLL" to build a DLL instead of a static library |
| 4 @rem - "/MT" to build a static library compatible with MSVC's /MT option (LIBCMT
vs MSVCRT) | 4 @rem - "/MT" to build a static library compatible with MSVC's /MT option (LIBCMT
vs MSVCRT) |
| 5 @echo off | 5 @echo off |
| 6 | 6 |
| 7 if Test%BUILD_ALT_DIR%==Test goto usage | 7 if Test%BUILD_ALT_DIR%==Test goto usage |
| 8 | 8 |
| 9 rem process commandline parameters | 9 rem process commandline parameters |
| 10 set TARGET=LIBRARY | 10 set TARGET=LIBRARY |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 cd ..\..\msvc | 97 cd ..\..\msvc |
| 98 echo lsusb build failed | 98 echo lsusb build failed |
| 99 goto done | 99 goto done |
| 100 | 100 |
| 101 :usage | 101 :usage |
| 102 echo ddk_build must be run in a WDK build environment | 102 echo ddk_build must be run in a WDK build environment |
| 103 pause | 103 pause |
| 104 goto done | 104 goto done |
| 105 | 105 |
| 106 :done | 106 :done |
| OLD | NEW |