Blame


1 0a0a3048 2018-01-10 stsp .PATH:${.CURDIR}/../../lib
2 0a0a3048 2018-01-10 stsp
3 0a0a3048 2018-01-10 stsp PROG = packfile_test
4 a1fd68d8 2018-01-12 stsp SRCS = error.c pack.c repository.c object.c path.c sha1.c packfile_test.c
5 0a0a3048 2018-01-10 stsp
6 0a0a3048 2018-01-10 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
7 a1fd68d8 2018-01-12 stsp LDADD = -lutil -lz
8 0a0a3048 2018-01-10 stsp DEBUG = -O0 -g
9 0a0a3048 2018-01-10 stsp
10 0a0a3048 2018-01-10 stsp NOMAN = yes
11 0a0a3048 2018-01-10 stsp
12 0a0a3048 2018-01-10 stsp .include <bsd.regress.mk>