mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 09:40:41 +03:00
f65ae2bf7d
* src: remove makefiles * .gitignore: remove CMakeLists.txt * README.md: add CMake to the required packages * debian: add CMake to the dependencies * Travis CI: specify Makefile directory * Replace hand-written Makefiles with CMake
29 lines
846 B
Bash
Executable File
29 lines
846 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo '---------------------------------------------------------------------'
|
|
echo 'SoftEther VPN for Unix'
|
|
echo
|
|
echo 'Copyright (c) SoftEther VPN Project at University of Tsukuba, Japan.'
|
|
echo 'Copyright (c) Daiyuu Nobori. All Rights Reserved.'
|
|
echo
|
|
echo 'This program is free software; you can redistribute it and/or'
|
|
echo 'modify it under the terms of the GNU General Public License'
|
|
echo 'version 2 as published by the Free Software Foundation.'
|
|
echo
|
|
echo 'Read and understand README.TXT, LICENSE.TXT and WARNING.TXT before use.'
|
|
echo '---------------------------------------------------------------------'
|
|
echo
|
|
|
|
echo 'Welcome to the corner-cutting configure script !'
|
|
echo
|
|
|
|
if [ ! -d "tmp" ]; then
|
|
mkdir tmp
|
|
fi
|
|
|
|
(cd tmp && cmake .. || exit 1)
|
|
|
|
echo ""
|
|
|
|
echo "The Makefile is generated. Run 'make -C tmp' to build SoftEther VPN."
|