1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
###################################################
#
# Makefile for mothur
# Created: June 29, 2010
#
###################################################
#
# Macros
#
USEMPI ?= no
64BIT_VERSION ?= yes
USEREADLINE ?= yes
USECOMPRESSION ?= no
MOTHUR_FILES="\"Enter_your_default_path_here\""
RELEASE_DATE = "\"3/20/2014\""
VERSION = "\"1.33.3\""
FORTAN_COMPILER = gfortran
FORTRAN_FLAGS =
# Optimize to level 3:
# Nope - let debuild set this
#CXXFLAGS += -O3
ifeq ($(strip $(64BIT_VERSION)),yes)
#if you are using centos uncomment the following lines
#CXX = g++44
#if you are a mac user use the following line
#TARGET_ARCH += -arch x86_64
#if you using cygwin to build Windows the following line
#CXX = x86_64-w64-mingw32-g++
#CC = x86_64-w64-mingw32-g++
#FORTAN_COMPILER = x86_64-w64-mingw32-gfortran
#TARGET_ARCH += -m64 -static
#if you are a linux user use the following line
#CXXFLAGS += -mtune=native -march=native
# But not if you are trying to make a generic build for
# packaging, because your binary will end up being specific
# to your own processor.
CXXFLAGS += -DBIT_VERSION
# FORTRAN_FLAGS = -m64
endif
CXXFLAGS += -DRELEASE_DATE=${RELEASE_DATE} -DVERSION=${VERSION}
ifeq ($(strip $(MOTHUR_FILES)),"\"Enter_your_default_path_here\"")
else
CXXFLAGS += -DMOTHUR_FILES=${MOTHUR_FILES}
endif
# if you do not want to use the readline library, set this to no.
# make sure you have the library installed
ifeq ($(strip $(USEREADLINE)),yes)
CXXFLAGS += -DUSE_READLINE
LIBS = \
-lreadline
endif
ifeq ($(strip $(USEMPI)),yes)
CXX = mpic++
CXXFLAGS += -DUSE_MPI
endif
# if you want to enable reading and writing of compressed files, set to yes.
# The default is no. this may only work on unix-like systems, not for windows.
ifeq ($(strip $(USECOMPRESSION)),yes)
CXXFLAGS += -DUSE_COMPRESSION
endif
#
# INCLUDE directories for mothur
#
CXXFLAGS += -I.
#
# Get the list of all .cpp files, rename to .o files
#
OBJECTS=$(patsubst %.cpp,%.o,$(wildcard *.cpp))
OBJECTS+=$(patsubst %.c,%.o,$(wildcard *.c))
OBJECTS+=$(patsubst %.f,%.o,$(wildcard *.f))
mothur : fortranSource $(OBJECTS) uchime
$(CXX) $(LDFLAGS) $(TARGET_ARCH) -o $@ $(OBJECTS) $(LIBS)
strip mothur
uchime:
echo ENV_GCC_OPTS="$(CPPFLAGS)"
echo ENV_LINK_OPTS="$(LDFLAGS)"
cd uchime_src && ENV_GCC_OPTS="$(CPPFLAGS)" ENV_LINK_OPTS="$(LDFLAGS)" ./mk && mv uchime .. && cd ..
fortranSource:
${FORTAN_COMPILER} -c $(FORTRAN_FLAGS) *.f
install : mothur
# cp mothur ../Release/mothur
%.o : %.c %.h
$(COMPILE.c) $(OUTPUT_OPTION) $<
%.o : %.cpp %.h
$(COMPILE.cpp) $(OUTPUT_OPTION) $<
%.o : %.cpp %.hpp
$(COMPILE.cpp) $(OUTPUT_OPTION) $<
clean :
@rm -f $(OBJECTS)
@rm -f uchime
|