Blame


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