Blame


1 4027f31a 2017-11-04 stsp .PATH:${.CURDIR}/../../lib
2 4027f31a 2017-11-04 stsp
3 4027f31a 2017-11-04 stsp PROG = repository_test
4 eb77ee11 2018-07-08 stsp SRCS = path.c repository.c error.c reference.c object.c object_idcache.c \
5 eb77ee11 2018-07-08 stsp object_idset.c opentemp.c sha1.c diff.c diffreg.c pack.c privsep.c \
6 eb77ee11 2018-07-08 stsp delta.c fileindex.c worktree.c zbuf.c repository_test.c
7 4027f31a 2017-11-04 stsp
8 5a83d54e 2018-04-01 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
9 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
10 b82eb359 2017-12-01 stsp DEBUG = -O0 -g
11 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
12 4027f31a 2017-11-04 stsp
13 4027f31a 2017-11-04 stsp NOMAN = yes
14 4027f31a 2017-11-04 stsp
15 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>