Blame


1 86c3caaf 2018-03-09 stsp .PATH:${.CURDIR}/../../lib
2 86c3caaf 2018-03-09 stsp
3 86c3caaf 2018-03-09 stsp PROG = worktree_test
4 f054b67a 2018-11-05 stsp SRCS = worktree.c repository.c object.c object_cache.c object_idset.c \
5 25a58941 2019-01-08 stsp object_parse.c opentemp.c path.c error.c reference.c sha1.c pack.c \
6 6353ad76 2019-02-08 stsp privsep.c delta.c inflate.c fileindex.c \
7 9e672c74 2019-03-11 stsp buf.c worklist.c rcsutil.c diff.c diffreg.c diff3.c lockfile.c \
8 9b6578d8 2019-05-09 stsp deflate.c object_create.c worktree_test.c
9 86c3caaf 2018-03-09 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 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
13 86c3caaf 2018-03-09 stsp
14 86c3caaf 2018-03-09 stsp NOMAN = yes
15 86c3caaf 2018-03-09 stsp
16 86c3caaf 2018-03-09 stsp .include <bsd.regress.mk>