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 86c3caaf 2018-03-09 stsp SRCS = worktree.c repository.c object.c path.c error.c refs.c sha1.c pack.c \
5 c48c4a9c 2018-03-11 stsp delta.c zbuf.c fileindex.c worktree_test.c
6 86c3caaf 2018-03-09 stsp
7 86c3caaf 2018-03-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
8 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
9 86c3caaf 2018-03-09 stsp DEBUG = -O0 -g
10 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
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>