spdlog/bench/Makefile

20 lines
332 B
Makefile
Raw Normal View History

2018-07-05 21:35:07 +08:00
CXX = g++
2016-09-18 07:28:41 +08:00
CXXFLAGS = -march=native -Wall -Wextra -pedantic -std=c++11 -pthread -I../include
2018-07-05 21:35:07 +08:00
CXX_RELEASE_FLAGS = -O3 -flto
2016-04-03 07:14:54 +08:00
2018-07-05 21:35:07 +08:00
binaries=bench
2016-04-03 07:14:54 +08:00
all: $(binaries)
bench: bench.cpp
$(CXX) bench.cpp -o bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
2018-07-05 21:35:07 +08:00
2018-03-21 21:46:52 +08:00
2016-04-03 07:14:54 +08:00
.PHONY: clean
clean:
rm -f *.o logs/* $(binaries)
rebuild: clean all