spdlog/tests/Makefile

22 lines
346 B
Makefile
Raw Normal View History

2015-05-15 20:30:37 +03:00
CXX ?= g++
2015-05-15 22:54:07 +03:00
CXXFLAGS = -Wall -pedantic -std=c++11 -pthread -O2
LDPFALGS = -pthread
2015-05-15 20:48:38 +03:00
CPP_FILES := $(wildcard *.cpp)
OBJ_FILES := $(addprefix ./,$(notdir $(CPP_FILES:.cpp=.o)))
tests: $(OBJ_FILES)
$(CXX) $(CXXFLAGS) $(LDPFALGS) -o $@ $^
%.o: %.cpp
2015-05-15 22:54:07 +03:00
$(CXX) $(CXXFLAGS) -c -o $@ $<
2015-05-15 20:30:37 +03:00
clean:
2015-05-15 20:48:38 +03:00
rm -f tests *.o logs/*
2015-05-15 20:30:37 +03:00
2015-05-15 20:54:01 +03:00
rebuild: clean tests
2015-05-15 20:30:37 +03:00