From f0bd085a13b6edecc90d1bf9734f59432fafddb9 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Wed, 21 Oct 2020 21:53:45 -0400 Subject: [PATCH] Makefile to help transition people to new build procedure for 1.6. --- Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7b0dcf7 --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ + +all: + @echo "The build procedure has changed in version 1.6." + @echo "In general, it now looks like this:" + @echo " " + @echo "Download the source code:" + @echo " " + @echo " cd ~" + @echo " git clone https://www.github.com/wb2osz/direwolf" + @echo " cd direwolf" + @echo " " + @echo "Optional - Do this to get the latest development version" + @echo "rather than the latest stable release." + @echo " " + @echo " git checkout dev" + @echo " " + @echo "Build it. There are two new steps not used for earlier releases." + @echo " " + @echo " mkdir build && cd build" + @echo " cmake .." + @echo " make -j4" + @echo " " + @echo "Install:" + @echo " " + @echo " sudo make install" + @echo " make install-conf" + @echo " " + @echo "You will probably need to install additional applications and" + @echo "libraries depending on your operating system." + @echo "More details are in the README.md file." + @echo " " + @echo "Questions?" + @echo " " + @echo " - Extensive documentation can be found in the 'doc' directory." + @echo " - Join the discussion forum here: https://groups.io/g/direwolf" + @echo " "