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 50bc349d 2018-06-22 stsp SRCS = worktree.c repository.c object.c object_idset.c opentemp.c path.c \
5 50bc349d 2018-06-22 stsp error.c reference.c sha1.c pack.c privsep.c delta.c zbuf.c \
6 511a516b 2018-05-19 stsp fileindex.c worktree_test.c
7 86c3caaf 2018-03-09 stsp
8 86c3caaf 2018-03-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
9 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
10 86c3caaf 2018-03-09 stsp DEBUG = -O0 -g
11 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
12 86c3caaf 2018-03-09 stsp
13 86c3caaf 2018-03-09 stsp NOMAN = yes
14 86c3caaf 2018-03-09 stsp
15 86c3caaf 2018-03-09 stsp .include <bsd.regress.mk>