spdlog/tests/Makefile

22 lines
422 B
Makefile
Raw Normal View History

2015-05-16 01:30:37 +08:00
CXX ?= g++
CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
2015-05-16 01:48:38 +08:00
LDPFALGS = -pthread
CPP_FILES := $(wildcard *.cpp)
OBJ_FILES := $(addprefix ./,$(notdir $(CPP_FILES:.cpp=.o)))
tests: $(OBJ_FILES)
$(CXX) $(CXXFLAGS) $(LDPFALGS) -o $@ $^
%.o: %.cpp
g++ $(CXXFLAGS) -c -o $@ $<
2015-05-16 01:30:37 +08:00
clean:
2015-05-16 01:48:38 +08:00
rm -f tests *.o logs/*
2015-05-16 01:30:37 +08:00
rebuild: clean all