From eed97e91baa1f64580828fc38fcaf4699b514987 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Mon, 21 Aug 2023 11:10:22 +0200 Subject: [PATCH] tweak makefile a bit --- makefile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index 225ff52..5570d87 100644 --- a/makefile +++ b/makefile @@ -1,8 +1,17 @@ -build: - gcc pomo.c -o pomo +CC=gcc +SRC=pomo.c +OUT=pomo +STYLE_BLUEPRINT=webkit +FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT) + +build: $(SRC) + $(CC) $(SRC) -o $(OUT) install: - cp ./pomo /bin/pomo + cp ./$(OUT) /bin/pomo lint: - clang-tidy pomo.c -- + clang-tidy $(SRC) -- + +format: + $(FORMATTER) $(SRC)