spdlog/tests/Makefile

23 lines
386 B
Makefile
Raw Normal View History

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