openvpn/install-win32/maketapinstall
James Yonan 5f866d914c Attempt to fix issue where domake-win build system was not properly
signing drivers and .exe files.

Added win/tap_span.py for building multiple versions of the TAP driver
and tapinstall binaries using different DDK versions to span from Win2K
to Win7 and beyond.

Version 2.1.3


git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6404 e7ae566f-a301-0410-adde-c780ea21d3b5
2010-08-20 20:24:42 +00:00

16 lines
420 B
Bash

#!/bin/sh
# Get the x86 and x64 versions of the tapinstall tool
# get version.nsi definitions
. autodefs/defs.sh
if [ -d "$TAPBINSRC" ]; then
mkdir -p $GENOUT/tapinstall/i386 &>/dev/null
mkdir -p $GENOUT/tapinstall/amd64 &>/dev/null
cp $TAPBINSRC/i386/tapinstall.exe $GENOUT/tapinstall/i386
cp $TAPBINSRC/amd64/tapinstall.exe $GENOUT/tapinstall/amd64
else
echo Cannot find pre-built tapinstall
fi