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 6bef87be 2018-09-11 stsp SRCS = path.c repository.c error.c reference.c object.c object_cache.c \
5 6bef87be 2018-09-11 stsp object_idcache.c object_idset.c object_parse.c opentemp.c sha1.c \
6 6bef87be 2018-09-11 stsp diff.c diffreg.c pack.c privsep.c delta.c fileindex.c worktree.c \
7 6bef87be 2018-09-11 stsp inflate.c repository_test.c
8 4027f31a 2017-11-04 stsp
9 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib \
10 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
11 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
12 4027f31a 2017-11-04 stsp
13 4027f31a 2017-11-04 stsp NOMAN = yes
14 4027f31a 2017-11-04 stsp
15 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>