Blame


1 ddb547b4 2018-06-04 stsp .PATH:${.CURDIR}/../../lib
2 ddb547b4 2018-06-04 stsp
3 ddb547b4 2018-06-04 stsp PROG = idset_test
4 ddb547b4 2018-06-04 stsp SRCS = error.c object.c privsep.c sha1.c pack.c zbuf.c path.c opentemp.c \
5 ddb547b4 2018-06-04 stsp delta.c repository.c reference.c worktree.c fileindex.c \
6 ddb547b4 2018-06-04 stsp object_idset.c idset_test.c
7 ddb547b4 2018-06-04 stsp
8 ddb547b4 2018-06-04 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
9 ddb547b4 2018-06-04 stsp LDADD = -lutil -lz
10 ddb547b4 2018-06-04 stsp DEBUG = -O0 -g
11 ddb547b4 2018-06-04 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
12 ddb547b4 2018-06-04 stsp
13 ddb547b4 2018-06-04 stsp NOMAN = yes
14 ddb547b4 2018-06-04 stsp
15 ddb547b4 2018-06-04 stsp .include <bsd.regress.mk>