Makefile (192B)
1 default: build 2 3 install: build 4 cp poet ~/.local/bin/poet 5 rm poet 6 7 build: 8 cc -o poet -lpq -lterm -Wall -Wextra -Werror -pedantic src/main.c src/util.c src/post.c src/edit.c 9 10 clean: 11 rm poet
QUOTE: Life is a journey, not a destination.