dotfiles/dot_tmux/plugins/tmux-mighty-scroll/Makefile
Anton Volnuhin 842b7ea7ba tmux plugins
2023-05-31 12:36:56 +03:00

14 lines
240 B
Makefile

.PHONY: all test benchmark
.NOTPARALLEL: all
pscheck: pscheck.c
$(CC) $(CFLAGS) -O2 -Wall -Wextra -Werror -Wconversion -pedantic -std=c99 $^ -o $@
benchmark: pscheck
./benchmark.sh
test: pscheck
./test.sh
all: pscheck test benchmark