Skip to content

Commit f0bd085

Browse files
committed
Makefile to help transition people to new build procedure for 1.6.
1 parent 0775e4b commit f0bd085

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

Makefile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
all:
3+
@echo "The build procedure has changed in version 1.6."
4+
@echo "In general, it now looks like this:"
5+
@echo " "
6+
@echo "Download the source code:"
7+
@echo " "
8+
@echo " cd ~"
9+
@echo " git clone https://www.github.com/wb2osz/direwolf"
10+
@echo " cd direwolf"
11+
@echo " "
12+
@echo "Optional - Do this to get the latest development version"
13+
@echo "rather than the latest stable release."
14+
@echo " "
15+
@echo " git checkout dev"
16+
@echo " "
17+
@echo "Build it. There are two new steps not used for earlier releases."
18+
@echo " "
19+
@echo " mkdir build && cd build"
20+
@echo " cmake .."
21+
@echo " make -j4"
22+
@echo " "
23+
@echo "Install:"
24+
@echo " "
25+
@echo " sudo make install"
26+
@echo " make install-conf"
27+
@echo " "
28+
@echo "You will probably need to install additional applications and"
29+
@echo "libraries depending on your operating system."
30+
@echo "More details are in the README.md file."
31+
@echo " "
32+
@echo "Questions?"
33+
@echo " "
34+
@echo " - Extensive documentation can be found in the 'doc' directory."
35+
@echo " - Join the discussion forum here: https://groups.io/g/direwolf"
36+
@echo " "

0 commit comments

Comments
 (0)