Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrover committed Jun 17, 2020
1 parent 817c5d1 commit d95a65e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
7 changes: 6 additions & 1 deletion MakeRules
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ DebugCPPFLAGS = $(SimpleCPPFLAGS) -O3 -g
CXX=g++
COMPILE.cpp= $(CXX) $(CPPFLAGS) -c
LIBS=-pthread
ECHO = echo ""; echo ""

ifdef AT_NCBI
ECHO = echo ""; echo ""
else
ECHO = echo ""
endif


CODE_DIR = $(HOME)/code
Expand Down
8 changes: 8 additions & 0 deletions bash_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,11 @@ function error
echo -e "${RED}$MSG${NOCOLOR}"
exit 1
}


function success
{
echo ""
echo -e "${GREEN}SUCCESS!${NOCOLOR}"
exit 0
}
6 changes: 3 additions & 3 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fi

echo ""
echo "Software version:"
./makeDistTree -version
phylogeny/makeDistTree -version

echo ""
echo -e ${GREEN}SUCCESS!${NOCOLOR}

success
2 changes: 1 addition & 1 deletion version.inc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define VERSION "1.1.5"
#define VERSION "1.1.6"

0 comments on commit d95a65e

Please sign in to comment.