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 f054b67a 2018-11-05 stsp object_idset.c object_parse.c opentemp.c sha1.c diff.c diffreg.c \
6 f054b67a 2018-11-05 stsp pack.c privsep.c delta.c fileindex.c worktree.c inflate.c \
7 9b6578d8 2019-05-09 stsp buf.c worklist.c rcsutil.c diff3.c lockfile.c deflate.c \
8 9b6578d8 2019-05-09 stsp object_create.c repository_test.c
9 4027f31a 2017-11-04 stsp
10 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib \
11 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
12 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
13 4027f31a 2017-11-04 stsp
14 4027f31a 2017-11-04 stsp NOMAN = yes
15 4027f31a 2017-11-04 stsp
16 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>