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 f054b67a 2018-11-05 stsp object_parse.c opentemp.c path.c error.c reference.c sha1.c \
6 f054b67a 2018-11-05 stsp pack.c privsep.c delta.c inflate.c fileindex.c worktree_test.c
7 86c3caaf 2018-03-09 stsp
8 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib \
9 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
10 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
11 86c3caaf 2018-03-09 stsp
12 86c3caaf 2018-03-09 stsp NOMAN = yes
13 86c3caaf 2018-03-09 stsp
14 86c3caaf 2018-03-09 stsp .include <bsd.regress.mk>