Skip to content

Commit

Permalink
Replace leading spaces with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
pschloss committed Jul 21, 2015
1 parent 832a4aa commit f008336
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ 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++
#CC = x86_64-w64-mingw32-g++
#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
Expand Down Expand Up @@ -110,29 +110,29 @@ endif
OBJECTS+=$(patsubst %.c,%.o,$(wildcard *.c))

mothur : $(OBJECTS) uchime
$(CXX) $(LDFLAGS) $(TARGET_ARCH) -o $@ $(OBJECTS) $(LIBS)
strip mothur
$(CXX) $(LDFLAGS) $(TARGET_ARCH) -o $@ $(OBJECTS) $(LIBS)
strip mothur


uchime:
cd source/uchime_src && ./mk && mv uchime .. && cd ..
cd source/uchime_src && ./mk && mv uchime .. && cd ..


install : mothur uchime
mv mothur ..
mv uchime ..
mv mothur ..
mv uchime ..


%.o : %.c %.h
$(COMPILE.c) $(OUTPUT_OPTION) $<
$(COMPILE.c) $(OUTPUT_OPTION) $<
%.o : %.cpp %.h
$(COMPILE.cpp) $(OUTPUT_OPTION) $<
$(COMPILE.cpp) $(OUTPUT_OPTION) $<
%.o : %.cpp %.hpp
$(COMPILE.cpp) $(OUTPUT_OPTION) $<
$(COMPILE.cpp) $(OUTPUT_OPTION) $<



clean :
@rm -f $(OBJECTS)
@rm -f uchime
@rm -f $(OBJECTS)
@rm -f uchime

0 comments on commit f008336

Please sign in to comment.