Blame


1 82ebf666 2020-03-18 stsp .PATH:${.CURDIR}/../../lib
2 82ebf666 2020-03-18 stsp
3 82ebf666 2020-03-18 stsp PROG = fetch_test
4 be288a59 2023-02-23 thomas SRCS = error.c privsep.c reference.c hash.c object.c object_parse.c path.c \
5 82ebf666 2020-03-18 stsp opentemp.c repository.c lockfile.c object_cache.c pack.c inflate.c \
6 82ebf666 2020-03-18 stsp deflate.c delta.c delta_cache.c object_idset.c object_create.c \
7 871bd038 2022-07-03 thomas fetch.c gotconfig.c dial.c fetch_test.c bloom.c murmurhash2.c sigs.c \
8 400c1baa 2022-10-13 thomas buf.c date.c object_open_privsep.c read_gitconfig_privsep.c \
9 232c0ac1 2023-04-22 thomas read_gotconfig_privsep.c pollfd.c reference_parse.c object_qid.c
10 82ebf666 2020-03-18 stsp
11 82ebf666 2020-03-18 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
12 4545b700 2021-10-15 thomas LDADD = -lutil -lz -lm
13 82ebf666 2020-03-18 stsp
14 82ebf666 2020-03-18 stsp NOMAN = yes
15 82ebf666 2020-03-18 stsp
16 7fb414ae 2020-08-08 stsp run-regress-fetch_test:
17 7fb414ae 2020-08-08 stsp ${.OBJDIR}/fetch_test -q
18 7fb414ae 2020-08-08 stsp
19 82ebf666 2020-03-18 stsp .include <bsd.regress.mk>