Blame


1 5c860e29 2018-03-12 stsp
2 5c860e29 2018-03-12 stsp PROG= got
3 5c860e29 2018-03-12 stsp SRCS= got.c
4 5c860e29 2018-03-12 stsp
5 5c860e29 2018-03-12 stsp CFLAGS+= -W -Wall -Wstrict-prototypes -Wunused-variable
6 5c860e29 2018-03-12 stsp
7 5c860e29 2018-03-12 stsp # libgit2
8 5c860e29 2018-03-12 stsp CFLAGS+= -I/usr/local/include
9 5c860e29 2018-03-12 stsp LDADD+= -L/usr/local/lib -lgit2
10 5c860e29 2018-03-12 stsp
11 5c860e29 2018-03-12 stsp .include <bsd.prog.mk>