From 7439e2573b35169b72f46c8c89fea9d6e8f0fc34 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 16 Dec 2013 12:21:42 -0800 Subject: [PATCH] stop stripping; switch to linux by default --- makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index 42e71a0..3d53941 100644 --- a/makefile +++ b/makefile @@ -28,7 +28,7 @@ ifeq ($(strip $(64BIT_VERSION)),yes) #CXX = g++44 #if you are a mac user use the following line - TARGET_ARCH += -arch x86_64 + #TARGET_ARCH += -arch x86_64 #if you using cygwin to build Windows the following line #CXX = x86_64-w64-mingw32-g++ @@ -37,7 +37,7 @@ ifeq ($(strip $(64BIT_VERSION)),yes) #TARGET_ARCH += -m64 -static #if you are a linux user use the following line - #CXXFLAGS += -mtune=native -march=native + CXXFLAGS += -mtune=native -march=native CXXFLAGS += -DBIT_VERSION endif @@ -96,9 +96,8 @@ OBJECTS+=$(patsubst %.f,%.o,$(wildcard *.f)) mothur : fortranSource $(OBJECTS) uchime $(CXX) $(LDFLAGS) $(TARGET_ARCH) -o $@ $(OBJECTS) $(LIBS) - - strip mothur - +# strip mothur + uchime: cd uchime_src && ./mk && mv uchime .. && cd .. -- 2.39.5