0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00
openvpn/win/build.py

24 lines
725 B
Python
Raw Normal View History

import os, sys
from wb import system, config, home_fn, cd_home, cd_service_win32, run_in_vs_shell
def main():
"""Build openvpn.exe and openvpnserv.exe"""
cd_home()
run_in_vs_shell("nmake /f %s" % (home_fn('msvc.mak'),))
cd_service_win32()
run_in_vs_shell("nmake /f %s" % ('msvc.mak'))
def clean():
"""Clean up after openvpn.exe and openvpnserv.exe build"""
cd_home()
run_in_vs_shell("nmake /f %s clean" % (home_fn('msvc.mak'),))
os.chdir("service-win32")
run_in_vs_shell("nmake /f %s clean" % ('msvc.mak'))
# if we are run directly, and not loaded as a module
if __name__ == "__main__":
if len(sys.argv) == 2 and sys.argv[1] == 'clean':
clean()
else:
main()