mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
368 B
Makefile
22 lines
368 B
Makefile
CXX ?= g++
|
|
CXXFLAGS = -Wall -pedantic -std=c++11 -pthread -Wl,--no-as-needed -O2
|
|
LDPFALGS = -pthread -flto
|
|
|
|
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 $@ $<
|
|
|
|
clean:
|
|
rm -f tests *.o logs/*
|
|
|
|
rebuild: clean tests
|
|
|
|
|
|
|