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 511a516b 2018-05-19 stsp SRCS = path.c repository.c error.c reference.c object.c opentemp.c \
5 511a516b 2018-05-19 stsp sha1.c diff.c diffreg.c pack.c privsep.c delta.c fileindex.c \
6 511a516b 2018-05-19 stsp 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>