Blame


1 86c3caaf 2018-03-09 stsp .PATH:${.CURDIR}/../../lib
2 86c3caaf 2018-03-09 stsp
3 86c3caaf 2018-03-09 stsp PROG = worktree_test
4 5261c201 2018-04-01 stsp SRCS = worktree.c repository.c object.c path.c error.c reference.c sha1.c \
5 2178c42e 2018-04-22 stsp pack.c privsep.c delta.c zbuf.c fileindex.c worktree_test.c
6 86c3caaf 2018-03-09 stsp
7 86c3caaf 2018-03-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
8 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
9 86c3caaf 2018-03-09 stsp DEBUG = -O0 -g
10 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
11 86c3caaf 2018-03-09 stsp
12 86c3caaf 2018-03-09 stsp NOMAN = yes
13 86c3caaf 2018-03-09 stsp
14 86c3caaf 2018-03-09 stsp .include <bsd.regress.mk>