summaryrefslogtreecommitdiffstats
path: root/install-win32/maketapinstall
blob: 11cb9153407286e2e4a664f94404d45c9e9d36ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh

# Build the x86 and x64 versions of the tapinstall tool
# Requires the Windows DDK.
# TISRC should be set to directory containing
# tapinstall source code.

# get version.nsi definitions
. autodefs/defs.sh

if [ -d "/c/WINDDK/$DDKVER" ] ; then

if ! [ -d "$TISRC" ] ; then
    echo "$TISRC" NOT INSTALLED
    exit 1
fi

# common declarations for all DDK build targets
. install-win32/ddk-common

amdtarget=""
if [ -z "$TI_BIN_AMD64" ]; then
    amdtarget="fre $x64_tag WNET"
fi

if [ -z "$DRVBINSRC" ] ; then
    rm -rf tapinstall
    cp -a "$TISRC" tapinstall

    if [ -e tapinstall/sources.in ]; then
	perl install-win32/ifdef.pl autodefs/defs.in <tapinstall/sources.in >tapinstall/sources
    fi

    cd tapinstall
    t=`pwd`
    cd ..

    for mode in "w2k f" "$amdtarget"; do
	if [ -n "$mode" ]; then
	    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"
	fi
    done
fi

if [ -n "$TI_BIN_AMD64" ]; then
    mkdir -p $t/objfre_wnet_amd64/amd64
    cp "$TI_BIN_AMD64" $t/objfre_wnet_amd64/amd64
fi

# $DRVBINSRC, if defined, points to prebuilt TAP driver and
# tapinstall.exe.
if [ -z "$DRVBINSRC" ] ; then
    # Get tapinstall
    mkdir -p $GENOUT/tapinstall/i386 &>/dev/null
    mkdir -p $GENOUT/tapinstall/amd64 &>/dev/null
    cp tapinstall/objfre_w2k_x86/i386/tapinstall.exe $GENOUT/tapinstall/i386
    cp tapinstall/objfre_wnet_amd64/amd64/tapinstall.exe $GENOUT/tapinstall/amd64
else
    mkdir $GENOUT &>/dev/null
    cp -a $DRVBINSRC/tapinstall $GENOUT/tapinstall
fi

# $DRVBINDEST, if defined, points to a destination directory
# where TAP driver and tapinstall.exe will be saved, to be used
# as a $DRVBINSRC in future builds.
if [ -n "$DRVBINDEST" ] ; then
    mkdir $DRVBINDEST &>/dev/null
    cp -a $GENOUT/driver $DRVBINDEST
    cp -a $GENOUT/tapinstall $DRVBINDEST
fi

title openvpn-build &>/dev/null

else
    echo Not building tapinstall -- DDK version $DDKVER NOT BUILT
fi