summaryrefslogtreecommitdiffstats
path: root/install-win32/maketap
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-03-06 09:40:31 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-03-06 09:40:31 +0000
commitaf897cabdcff349bcec55744db4e3208cbcddcf6 (patch)
tree04c2d24122fbc84b2eca4ad56873773af6927f17 /install-win32/maketap
parentd6d79149fac10c4b96a14ebe35784a6241de953d (diff)
downloadopenvpn-af897cabdcff349bcec55744db4e3208cbcddcf6.tar.gz
openvpn-af897cabdcff349bcec55744db4e3208cbcddcf6.tar.xz
openvpn-af897cabdcff349bcec55744db4e3208cbcddcf6.zip
Added maketap and signtap scripts.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1759 e7ae566f-a301-0410-adde-c780ea21d3b5
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