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 eb77ee11 2018-07-08 stsp SRCS = worktree.c repository.c object.c object_idcache.c object_idset.c \
5 eb77ee11 2018-07-08 stsp opentemp.c path.c error.c reference.c sha1.c pack.c privsep.c delta.c \
6 eb77ee11 2018-07-08 stsp zbuf.c 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>