ssnail

crappy and opinionated static site generator
git clone https://git.e1e0.net/ssnail.git
Log | Files | Refs | README | LICENSE

Makefile (223B)


      1 PROG =		ssnail
      2 
      3 SRCS +=		ssnail.c helpers.c error.c
      4 
      5 LDFLAGS +=	-L/usr/local/lib
      6 LDADD +=	-llowdown -lm
      7 CFLAGS +=	-Wall -Wextra -Werror -std=c11 -pedantic
      8 CFLAGS +=	-I/usr/local/include -I${.CURDIR}
      9 
     10 .include <bsd.prog.mk>