Skip to content

Commit

Permalink
Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMula committed May 4, 2018
1 parent fad533e commit e2f8e63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -90,7 +90,7 @@ speedup_avx2: $(SPEEDUP_DEPS) $(DEPS_AVX2)
$(CXX) $(FLAGS_AVX2) -DNDEBUG src/speedup.cpp -o $@

benchmark_avx2: $(BENCHMARK_DEPS) $(DEPS_SSE4)
$(CXX) $(FLAGS_SSE4) -DNDEBUG src/benchmark.cpp -o $@
$(CXX) $(FLAGS_AVX2) -DNDEBUG src/benchmark.cpp -o $@

unittests_avx2: $(UNITTESTS_DEPS) $(DEPS_AVX2)
$(CXX) $(FLAGS_AVX2) src/unittests.cpp -o $@
Expand All @@ -99,7 +99,7 @@ validate_avx512f: $(VALIDATE_DEPS) $(DEPS_AVX512F)
$(CXX) $(FLAGS_AVX512F) src/validate.cpp -o $@

benchmark_avx512f: $(BENCHMARK_DEPS) $(DEPS_SSE4)
$(CXX) $(FLAGS_SSE4) -DNDEBUG src/benchmark.cpp -o $@
$(CXX) $(FLAGS_AVX512F) -DNDEBUG src/benchmark.cpp -o $@

speedup_avx512f: $(SPEEDUP_DEPS) $(DEPS_AVX512F)
$(CXX) $(FLAGS_AVX512F) -DNDEBUG src/speedup.cpp -o $@
Expand All @@ -114,7 +114,7 @@ speedup_avx512bw: $(SPEEDUP_DEPS) $(DEPS_AVX512BW)
$(CXX) $(FLAGS_AVX512BW) -DNDEBUG src/speedup.cpp -o $@

benchmark_avx512bw: $(BENCHMARK_DEPS) $(DEPS_SSE4)
$(CXX) $(FLAGS_SSE4) -DNDEBUG src/benchmark.cpp -o $@
$(CXX) $(FLAGS_AVX512BW) -DNDEBUG src/benchmark.cpp -o $@

unittests_avx512bw: $(UNITTESTS_DEPS) $(DEPS_AVX512BW)
$(CXX) $(FLAGS_AVX512BW) src/unittests.cpp -o $@
Expand Down

0 comments on commit e2f8e63

Please sign in to comment.