Skip to content

Commit

Permalink
配布用にMakefile修正
Browse files Browse the repository at this point in the history
  • Loading branch information
HiraokaTakuya committed Oct 11, 2016
1 parent f000963 commit e694f45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Makefile
@@ -1,7 +1,7 @@
COMPILER = g++
#COMPILER = mpicxx
CFLAGS = -std=c++11 -fno-exceptions -fno-rtti -Wextra -Ofast -MMD -MP -fopenmp
CFLAGS += -march=native # make publish の時はここをコメントアウトする必要がある。
#CFLAGS += -march=native # make publish の時はここをコメントアウトする必要がある。
LDFLAGS = -lpthread #-lboost_mpi -lboost_serialization
LIBS =
INCLUDE = #-I../include
Expand Down Expand Up @@ -87,28 +87,28 @@ publish:
@./$(TARGET) bench
@touch $(SOURCES)
$(MAKE) profuse
@strip $(TARGET)
#@strip $(TARGET)
@mv $(TARGET) $(TARGET_BMI2)
$(MAKE) clean
$(MAKE) profgen_sse
@./$(TARGET) bench
@touch $(SOURCES)
$(MAKE) profuse_sse
@strip $(TARGET)
#@strip $(TARGET)
@mv $(TARGET) $(TARGET_SSE42)
$(MAKE) clean
$(MAKE) profgen_sse41
@./$(TARGET) bench
@touch $(SOURCES)
$(MAKE) profuse_sse41
@strip $(TARGET)
#@strip $(TARGET)
@mv $(TARGET) $(TARGET_SSE41)
$(MAKE) clean
$(MAKE) profgen_sse2
@./$(TARGET) bench
@touch $(SOURCES)
$(MAKE) profuse_sse2
@strip $(TARGET)
#@strip $(TARGET)
@mv $(TARGET) $(TARGET_SSE2)

clean:
Expand Down

0 comments on commit e694f45

Please sign in to comment.