Permalink
Browse files
Updates makefile for release
- Loading branch information...
Showing
with
6 additions
and
5 deletions.
-
+3
−2
Makefile
-
+3
−3
makefile-internal
|
|
@@ -22,8 +22,8 @@ USEBOOST ?= yes |
|
|
BOOST_LIBRARY_DIR="\"Enter_your_boost_library_path_here\""
|
|
|
BOOST_INCLUDE_DIR="\"Enter_your_boost_include_path_here\""
|
|
|
MOTHUR_FILES="\"Enter_your_default_path_here\""
|
|
|
-RELEASE_DATE = "\"3/6/2017\""
|
|
|
-VERSION = "\"1.39.4\""
|
|
|
+RELEASE_DATE = "\"3/20/2017\""
|
|
|
+VERSION = "\"1.39.5\""
|
|
|
|
|
|
ifeq ($(strip $(64BIT_VERSION)),yes)
|
|
|
CXXFLAGS += -DBIT_VERSION
|
|
|
@@ -35,6 +35,7 @@ ifeq ($(strip $(OPTIMIZE)),yes) |
|
|
endif
|
|
|
|
|
|
CXXFLAGS += -DRELEASE_DATE=${RELEASE_DATE} -DVERSION=${VERSION} -std=c++0x
|
|
|
+LDFLAGS += -std=c++0x
|
|
|
|
|
|
ifeq ($(strip $(MOTHUR_FILES)),"\"Enter_your_default_path_here\"")
|
|
|
else
|
|
|
|
|
|
@@ -1,12 +1,12 @@ |
|
|
64BIT_VERSION ?= yes
|
|
|
USEREADLINE ?= no
|
|
|
USEBOOST ?= no
|
|
|
-RELEASE_DATE = "\"3/6/2017\""
|
|
|
-VERSION = "\"1.39.4\""
|
|
|
+RELEASE_DATE = "\"3/20/2017\""
|
|
|
+VERSION = "\"1.39.5\""
|
|
|
|
|
|
# Optimize to level 3:
|
|
|
CXXFLAGS += -O3 -std=c++0x
|
|
|
-
|
|
|
+ LDFLAGS += -std=c++0x
|
|
|
|
|
|
ifeq ($(strip $(64BIT_VERSION)),yes)
|
|
|
#if you are a mac user use the following line
|
|
|
|
0 comments on commit
6489965