spdlog/example/Makefile.mingw

26 lines
509 B
Makefile
Raw Normal View History

2018-04-06 09:36:22 +08:00
CXX ?= g++
2018-07-21 05:24:30 +08:00
CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -pedantic -std=gnu++0x -pthread -Wl,--no-as-needed -I../include
2018-04-06 09:36:22 +08:00
CXX_RELEASE_FLAGS = -O3
CXX_DEBUG_FLAGS= -g
2018-07-21 05:24:30 +08:00
all: example
debug: example-debug
2018-04-06 09:36:22 +08:00
example: example.cpp
$(CXX) example.cpp -o example $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
example-debug: example.cpp
$(CXX) example.cpp -o example-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS)
clean:
2018-07-21 05:24:30 +08:00
rm -f *.o logs/*.txt example example-debug
2018-04-06 09:36:22 +08:00
rebuild: clean all
rebuild-debug: clean debug