libvieter/Makefile

102 lines
2.4 KiB
Makefile
Raw Permalink Normal View History

2023-01-18 14:12:02 +01:00
# https://spin.atomicobject.com/2016/08/26/makefile-c-projects/ was a great
# base for this Makefile
2023-01-18 11:29:16 +01:00
LIB_FILENAME ?= libvieter.a
BUILD_DIR ?= build
SRC_DIR ?= src
TEST_DIR ?= test
2023-01-18 11:29:16 +01:00
INC_DIRS ?= include
2023-01-27 20:48:51 +01:00
LIB := $(BUILD_DIR)/$(LIB_FILENAME)
2023-01-18 11:29:16 +01:00
SRCS != find '$(SRC_DIR)' -iname '*.c'
2023-02-23 10:13:58 +01:00
SRCS_H != find $(INC_DIRS) '$(SRC_DIR)' -iname '*.h'
SRCS_TEST != find '$(TEST_DIR)' -iname '*.c'
2023-01-18 11:29:16 +01:00
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
OBJS_TEST := $(SRCS_TEST:%=$(BUILD_DIR)/%.o)
DEPS := $(SRCS:%=$(BUILD_DIR)/%.d) $(SRCS_TEST:%=$(BUILD_DIR)/%.d)
BINS_TEST := $(OBJS_TEST:%.c.o=%)
TARGETS_TEST := $(BINS_TEST:%=test-%)
TARGETS_MEM_TEST := $(BINS_TEST:%=test-mem-%)
2023-01-18 11:29:16 +01:00
INC_FLAGS := $(addprefix -I,$(INC_DIRS))
# -MMD: generate a .d file for every source file. This file can be imported by
# make and makes make aware that a header file has been changed, ensuring an
# object file is also recompiled if only a header is changed.
# -MP: generate a dummy target for every header file (according to the docs it
# prevents some errors when removing header files)
2023-01-22 20:34:05 +01:00
CFLAGS ?= -MMD -MP -g
VIETERCFLAGS := $(INC_FLAGS) $(CFLAGS) -Wall -Wextra
2023-01-18 11:29:16 +01:00
.PHONY: all
all: vieter
# =====COMPILATION=====
2023-01-22 13:02:11 +01:00
# Utility used by the CI to lint
.PHONY: objs
objs: $(OBJS)
2023-01-18 11:29:16 +01:00
.PHONY: vieter
2023-01-27 20:48:51 +01:00
vieter: $(LIB)
$(LIB): $(OBJS)
2023-01-18 11:29:16 +01:00
ar -rcs $@ $(OBJS)
$(BUILD_DIR)/$(SRC_DIR)/%.c.o: $(SRC_DIR)/%.c
2023-01-18 11:29:16 +01:00
mkdir -p $(dir $@)
$(CC) $(VIETERCFLAGS) -c $< -o $@
2023-01-18 11:29:16 +01:00
# =====TESTING=====
.PHONY: test
test: $(TARGETS_TEST)
2023-01-22 12:17:56 +01:00
.PHONY: test-mem
test-mem: $(TARGETS_MEM_TEST)
.PHONY: $(TARGETS_TEST)
$(TARGETS_TEST): test-%: %
./$^
.PHONY: $(TARGETS_MEM_TEST)
$(TARGETS_MEM_TEST): test-mem-%: %
valgrind --tool=memcheck --error-exitcode=1 --track-origins=yes --leak-check=full ./$^
2023-01-22 12:17:56 +01:00
.PHONY: build-test
build-test: $(BINS_TEST)
2023-01-27 20:48:51 +01:00
$(BINS_TEST): %: %.c.o $(LIB)
$(CC) \
$^ -o $@
2023-01-27 20:48:51 +01:00
# Along with the include directory, each test includes $(TEST_DIR) (which
# contains the acutest.h header file), and the src directory of the module it's
# testing. This allows tests to access internal methods, which aren't publicly
# exposed.
$(BUILD_DIR)/$(TEST_DIR)/%.c.o: $(TEST_DIR)/%.c
mkdir -p $(dir $@)
$(CC) $(VIETERCFLAGS) -I$(TEST_DIR) \
-I$(dir $(@:$(BUILD_DIR)/$(TEST_DIR)/%=$(SRC_DIR)/%)) \
-c $< -o $@
2023-01-18 16:58:33 +01:00
# =====MAINTENANCE=====
.PHONY: lint
lint:
2023-01-18 13:53:50 +01:00
clang-format -n --Werror $(SRCS) $(SRCS_H)
.PHONY: fmt
fmt:
2023-01-18 13:53:50 +01:00
clang-format -i $(SRCS) $(SRCS_H)
2023-01-18 11:29:16 +01:00
.PHONY: clean
clean:
rm -rf $(BUILD_DIR)
# Make make aware of the .d files
-include $(DEPS)