diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-03-06 09:40:31 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-03-06 09:40:31 +0000 |
commit | af897cabdcff349bcec55744db4e3208cbcddcf6 (patch) | |
tree | 04c2d24122fbc84b2eca4ad56873773af6927f17 /install-win32/maketap | |
parent | Added service configuration to install-win32/winconfig (diff) | |
download | openvpn-af897cabdcff349bcec55744db4e3208cbcddcf6.tar.xz |
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 '')
-rw-r--r-- | install-win32/maketap | 15 |
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 |