53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
CXX = g++
|
|
CXXFLAGS = -Wall -Wextra -Wpedantic -Wshadow -Wnon-virtual-dtor \
|
|
-Wold-style-cast -Wcast-align -Wunused -Woverloaded-virtual -Wconversion \
|
|
-Wsign-conversion -Wnull-dereference -Wdouble-promotion -Wformat=2 -std=c++17
|
|
|
|
CXXFLAGS += -I.
|
|
|
|
ifeq ($(RELEASE),)
|
|
CFLAGS += -g -O0
|
|
BUILD_TYPE = Debug
|
|
else
|
|
CXXFLAGS += -O3
|
|
CXXFLAGS += -Werror
|
|
BUILD_TYPE = Release
|
|
endif
|
|
|
|
SRC = $(wildcard *.cc)
|
|
HDR = $(wildcard *.h)
|
|
OBJ = $(SRC:.cc=.o)
|
|
|
|
all: main.elf test.elf
|
|
test: test.elf
|
|
./test.elf
|
|
|
|
main.elf: $(OBJ) | words.txt
|
|
@echo "Building & linking $@"
|
|
@$(CXX) $(CXXFLAGS) $^ -o $@
|
|
|
|
test.elf: ordle.cc test/test.cc
|
|
@$(CXX) $(CXXFLAGS) $^ -o $@
|
|
|
|
words.txt: /usr/share/dict/words
|
|
cat $< > $@
|
|
|
|
%.o:%.cc
|
|
@echo "Building $@"
|
|
@$(CXX) -c $(CXXFLAGS) $< -o $@
|
|
|
|
lint: clang-tidy cppcheck clang-format
|
|
|
|
clang-tidy:
|
|
clang-tidy $(SRC) -- $(CXXFLAGS)
|
|
|
|
cppcheck:
|
|
cppcheck --enable=all --language=c++ --std=c++17 --suppress=missingIncludeSystem -I/usr/include $(SRC) $(HDR)
|
|
|
|
format:
|
|
clang-format -i $(SRC) $(HDR) **/*.cc
|
|
|
|
clean:
|
|
rm -f *.o *.elf words.txt
|
|
|
|
.PHONY: clean all lint clang-tidy cppcheck format
|