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.
spdlog/example/makefile

25 lines
447 B
Makefile

12 years ago
CXX = g++
12 years ago
CXXFLAGS = -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -I../include
11 years ago
CXX_RELEASE_FLAGS = -O3 -flto
12 years ago
CXX_DEBUG_FLAGS= -g
12 years ago
OUTBIN = example
12 years ago
12 years ago
all: example.cpp
$(CXX) example.cpp -o $(OUTBIN) $(CXXFLAGS) $(CXX_RELEASE_FLAGS)
12 years ago
12 years ago
debug: example.cpp
$(CXX) example.cpp -o $(OUTBIN)-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS)
12 years ago
clean:
12 years ago
rm -f *.txt $(OUTBIN) $(OUTBIN)-debug
12 years ago
12 years ago
rebuild: clean all
rebuild-debug: clean debug