mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-24 06:32:06 +08:00
22 lines
422 B
Makefile
22 lines
422 B
Makefile
CXX ?= g++
|
|
CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
|
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 $@ $<
|
|
|
|
clean:
|
|
rm -f tests *.o logs/*
|
|
|
|
rebuild: clean all
|
|
|
|
|
|
|