summaryrefslogtreecommitdiffstats
path: root/install-win32/maketap
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/maketap')
-rw-r--r--install-win32/maketap15
1 files changed, 15 insertions, 0 deletions
diff --git a/install-win32/maketap b/install-win32/maketap
new file mode 100644
index 0000000..583c5e0
--- /dev/null
+++ b/install-win32/maketap
@@ -0,0 +1,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