pomo/makefile

18 lines
234 B
Makefile
Raw Normal View History

2023-08-21 09:10:22 +00:00
CC=gcc
SRC=pomo.c
OUT=pomo
STYLE_BLUEPRINT=webkit
FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT)
build: $(SRC)
$(CC) $(SRC) -o $(OUT)
install:
2023-08-21 09:10:22 +00:00
cp ./$(OUT) /bin/pomo
lint:
2023-08-21 09:10:22 +00:00
clang-tidy $(SRC) --
format:
$(FORMATTER) $(SRC)