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 5261c201 2018-04-01 stsp SRCS = path.c repository.c error.c reference.c object.c sha1.c diff.c \
5 a76a38d9 2018-03-11 stsp diffreg.c pack.c delta.c zbuf.c repository_test.c
6 4027f31a 2017-11-04 stsp
7 5a83d54e 2018-04-01 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
8 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
9 b82eb359 2017-12-01 stsp DEBUG = -O0 -g
10 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
11 4027f31a 2017-11-04 stsp
12 4027f31a 2017-11-04 stsp NOMAN = yes
13 4027f31a 2017-11-04 stsp
14 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>