From 9c4c3ae2e45dd6cb7ba3e8bb968b8a78ec5e9971 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Tue, 19 Feb 2019 12:43:49 +0300 Subject: [PATCH] =?UTF-8?q?Makefile=20=D0=B4=D0=BB=D1=8F=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B3=D1=80=D1=83=D0=B7=D0=BA=D0=B8=20(=D0=BE=D0=B1=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F)=20=D1=81=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BE=D0=BD=D0=BD=D0=B8=D1=85=20=D0=BC=D0=BE=D0=B4?= =?UTF-8?q?=D1=83=D0=BB=D0=B5=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..961c19c --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# To force update modules execute command: +# make -B + +download: thirdparty/cotire.cmake thirdparty/PVS-Studio.cmake + +thirdparty/cotire.cmake: + wget -O thirdparty/cotire.cmake https://raw.githubusercontent.com/sakra/cotire/master/CMake/cotire.cmake + +thirdparty/PVS-Studio.cmake: + wget -O thirdparty/PVS-Studio.cmake https://raw.githubusercontent.com/viva64/pvs-studio-cmake-examples/master/PVS-Studio.cmake + dos2unix thirdparty/PVS-Studio.cmake +