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 50bc349d 2018-06-22 stsp SRCS = path.c repository.c error.c reference.c object.c object_idset.c \
5 50bc349d 2018-06-22 stsp opentemp.c sha1.c diff.c diffreg.c pack.c privsep.c delta.c \
6 50bc349d 2018-06-22 stsp 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>