tweak makefile a bit

This commit is contained in:
NunoSempere 2023-08-21 11:10:22 +02:00
parent 5075fb8ad8
commit eed97e91ba

View File

@ -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)