Removed noisy output from makefile

If people cannot figure out to install gcc, libssl etc, then they certainly
cannot figure out how to use GB.
This commit is contained in:
Ivan Skytte Jørgensen
2015-11-24 11:47:48 +01:00
parent 1210808a5f
commit f2d12b3a25

@ -141,25 +141,6 @@ libcld2_full.so:
vclean:
rm -f Version.o
@echo ""
@echo "*****"
@echo ""
@echo "If make fails on Ubuntu then first run:"
@echo ""
@echo "sudo apt-get update ; sudo apt-get install make g++ libssl-dev"
@echo ""
@echo ""
@echo "If make fails on RedHat then first run:"
@echo ""
@echo "sudo yum install gcc-c++"
@echo ""
@echo ""
@echo "If make fails on CentOS then first run:"
@echo ""
@echo "sudo yum install gcc-c++ openssl-devel"
@echo ""
@echo "*****"
@echo ""
gb: vclean $(OBJS) main.o $(LIBFILES)
$(CXX) $(DEFS) $(CPPFLAGS) -o $@ main.o $(OBJS) $(LIBS)