Blame


1 4027f31a 2017-11-04 stsp .PATH:${.CURDIR}/../../lib
2 4027f31a 2017-11-04 stsp
3 4027f31a 2017-11-04 stsp PROG = repository_test
4 7d283eee 2017-11-29 stsp SRCS = path.c repository.c error.c refs.c object.c sha1.c diff.c \
5 4ca7b755 2018-01-26 stsp diffreg.c pack.c delta.c zb.c repository_test.c
6 4027f31a 2017-11-04 stsp
7 4027f31a 2017-11-04 stsp CPPFLAGS = -I${.CURDIR}/../../include
8 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
9 b82eb359 2017-12-01 stsp DEBUG = -O0 -g
10 a92b0c17 2018-01-14 stsp CFLAGS += -Werror
11 4027f31a 2017-11-04 stsp
12 4027f31a 2017-11-04 stsp NOMAN = yes
13 4027f31a 2017-11-04 stsp
14 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>