mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

partial builds, where only a subset of OpenVPN installer components are built. See ./domake-win comments. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2710 e7ae566f-a301-0410-adde-c780ea21d3b5
16 lines
391 B
Bash
16 lines
391 B
Bash
#!/bin/sh
|
|
|
|
# prepare files for building on Windows
|
|
# run from top directory: install-win32/winconfig
|
|
|
|
rm -rf autodefs
|
|
mkdir autodefs
|
|
|
|
# build multi-grammar definition files
|
|
perl install-win32/m4todef.pl <version.m4 >autodefs/version.in
|
|
for g in "h" "sh" "nsi" "in" ; do
|
|
perl install-win32/trans.pl $g install-win32/settings.in >autodefs/defs.$g
|
|
done
|
|
|
|
cat /dev/null >autodefs/guidefs.nsi
|