-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuildall.cmd
More file actions
32 lines (26 loc) · 827 Bytes
/
buildall.cmd
File metadata and controls
32 lines (26 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
if x%SDKBASE%x == xx (
echo.
echo SDKBASE not set. Set to base directory of Windows SDK.
echo Note that the path must not contain any spaces - required by build.exe
echo.
goto exit
)
if x%WRKBASE%x == xx (
echo.
echo WRKBASE not set. Set to base directory of WMK/HP.
echo Note that the path must not contain any spaces - required by build.exe
echo.
goto exit
)
if NOT x%DDKBUILDENV%x == xx (
echo.
echo Build environment found. Execute this command in a normal shell, not in a WDK shell.
echo.
goto exit
)
copy /Y Jpufbt\jpufbt\jpufbtmsg_u.mc + Jpfbt\jpfbt\jpfbtmsg.mc Jpufbt\jpufbt\jpufbtmsg.mc
copy /Y Jpkfbt\jpkfbt\jpkfbtmsg_u.mc + Jpfbt\jpfbt\jpfbtmsg.mc Jpkfbt\jpkfbt\jpkfbtmsg.mc
cmd /C ddkbuild -WLHNET checked . -cZ
cmd /C ddkbuild -WLHNET free . -cZ
:exit