blob: dff2f2121e3d685ae6f3dbf346bd272967820273 (
plain) (
tree)
|
|
#!/bin/sh
# Build the x86 and x64 versions of the tapinstall tool
# Requires the Windows DDK
TISRC=../tapinstall
# get version.nsi definitions
. autodefs/nsidefs.sh
rm -rf tapinstall
cp -a $TISRC tapinstall
cd tapinstall
t=`pwd`
cd ..
for mode in "fre WNET" "fre AMD64 WNET"; do
echo '**********' build TAPINSTALL $mode
cmd //c "C:\\WINDDK\\$DDKVER\\bin\\setenv.bat C:\\WINDDK\\$DDKVER $mode && cd `perl install-win32/dosname.pl $t` && build -cef"
done
|