Blame


1 ac25a292 2018-01-26 stsp .PATH:${.CURDIR}/../../lib
2 ac25a292 2018-01-26 stsp
3 ac25a292 2018-01-26 stsp PROG = delta_test
4 53bf0b54 2023-02-23 op SRCS = delta.c error.c opentemp.c path.c inflate.c hash.c delta_test.c \
5 2f43cd69 2023-04-14 stsp pollfd.c object_parse.c object_qid.c
6 ac25a292 2018-01-26 stsp
7 ac25a292 2018-01-26 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
8 ac25a292 2018-01-26 stsp LDADD = -lz
9 ac25a292 2018-01-26 stsp
10 ac25a292 2018-01-26 stsp NOMAN = yes
11 ac25a292 2018-01-26 stsp
12 7fb414ae 2020-08-08 stsp run-regress-delta_test:
13 7fb414ae 2020-08-08 stsp ${.OBJDIR}/delta_test -q
14 7fb414ae 2020-08-08 stsp
15 ac25a292 2018-01-26 stsp .include <bsd.regress.mk>