QUOTE: Be the change, make a difference.

poet

A terminal-based blogging interface

Makefile (192B)


      1default: build
      2
      3install: build
      4	cp poet ~/.local/bin/poet
      5	rm poet
      6
      7build:
      8	cc -o poet -lpq -lterm -Wall -Wextra -Werror -pedantic src/main.c src/util.c src/post.c src/edit.c
      9
     10clean:
     11	rm poet