blob: 583c5e007d8fe85fb4c4168ddcb3c49024888afa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# Build the x86 and x64 versions of the TAP driver
# Requires the Windows DDK
DDKVER=3790
cd tap-win32
t=`pwd`
cd ..
for mode in "fre WNET" "fre AMD64 WNET"; do
echo '**********' build TAP $mode
cmd //c "C:\\WINDDK\\$DDKVER\\bin\\setenv.bat C:\\WINDDK\\$DDKVER $mode && cd `perl install-win32/dosname.pl $t` && build -cef"
done
|