TARGET := 0c SRC_DIR := src BUILD_DIR := build CFLAGS := -Werror -Wall -Wextra -Wmissing-declarations -pedantic -std=c11 -ggdb SRCS := $(wildcard $(SRC_DIR)/*.c) HEADERS := $(wildcard $(SRC_DIR)/*.h) OBJS := $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o, $(SRCS)) .PHONY: all all: $(TARGET) $(TARGET): $(BUILD_DIR) $(OBJS) $(CC) $(CFLAGS) $(OBJS) -o $(TARGET) $(BUILD_DIR): @mkdir -p $@ .PHONY: linter linter: $(SRCS) $(HEADERS) clang-format --dry-run --Werror $? $(MAKE) -C tests/integration/ linter .PHONY: linter-fix linter-fix: $(SRCS) $(HEADERS) clang-format -i $? $(MAKE) -C tests/integration/ linter-fix .PHONY: integration-test integration-test: $(MAKE) $(MAKE) -C tests/integration/ .PHONY: unit-test unit-test: $(MAKE) -C tests/unit/ .PHONY: check check: $(MAKE) integration-test $(MAKE) unit-test .PHONY: docs docs: $(MAKE) -C docs .PHONY: docs-dist docs-dist: $(MAKE) -C docs dist $(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(CC) $(CFLAGS) -c $< -o $@