pomo/makefile
2023-08-21 11:10:22 +02:00

18 lines
234 B
Makefile

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 ./$(OUT) /bin/pomo
lint:
clang-tidy $(SRC) --
format:
$(FORMATTER) $(SRC)