summaryrefslogtreecommitdiffstats
path: root/install-win32/makeopenvpn
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/makeopenvpn')
-rw-r--r--install-win32/makeopenvpn13
1 files changed, 5 insertions, 8 deletions
diff --git a/install-win32/makeopenvpn b/install-win32/makeopenvpn
index 48522e6..31df604 100644
--- a/install-win32/makeopenvpn
+++ b/install-win32/makeopenvpn
@@ -4,13 +4,10 @@
. autodefs/defs.sh
# build OpenVPN binary
-[ "$MAKE_CLEAN" = "yes" ] && make -f makefile.w32 clean
+[ "$CLEAN" = "yes" ] && make -f makefile.w32 clean
make -f makefile.w32 -j $MAKE_JOBS
-# build OpenVPN service (openvpnserv.exe)
-if [ -n "$SVC_TEMPLATE" ] ; then
- cd service-win32
- [ "$MAKE_CLEAN" = "yes" ] && make clean
- make -j $MAKE_JOBS
- cd ..
-fi
+# copy OpenVPN executable to GENOUT/bin
+mkdir -p $GENOUT/bin &>/dev/null
+cp $PRODUCT_UNIX_NAME.exe $GENOUT/bin
+strip $GENOUT/bin/$PRODUCT_UNIX_NAME.exe