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 1c11b35c 2019-01-12 stsp SRCS = error.c path.c sha1.c path_test.c
5 1c11b35c 2019-01-12 stsp
6 1c11b35c 2019-01-12 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
7 1c11b35c 2019-01-12 stsp LDADD = -lutil -lz
8 1c11b35c 2019-01-12 stsp
9 1c11b35c 2019-01-12 stsp NOMAN = yes
10 1c11b35c 2019-01-12 stsp
11 7fb414ae 2020-08-08 stsp run-regress-path_test:
12 7fb414ae 2020-08-08 stsp ${.OBJDIR}/path_test -q
13 7fb414ae 2020-08-08 stsp
14 1c11b35c 2019-01-12 stsp .include <bsd.regress.mk>