Makefile to help transition people to new build procedure for 1.6.

This commit is contained in:
wb2osz 2020-10-21 21:53:45 -04:00
parent 0775e4b6a2
commit f0bd085a13
1 changed files with 36 additions and 0 deletions

36
Makefile Normal file
View File

@ -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 " "